Repository URL to install this package:
|
Version:
2.1.14 ▾
|
import { SubscriptionOrderInformationProps as SubscriptionOrderInformationPlaceholderProps } from 'abstractions/Subscription/SubscriptionOrderInformation';
import { CalendarState } from '@skava/ui/dist/components/molecules/Calendar';
export interface OrderInformationProps {
label?: string;
value?: string;
dataQa?: string;
}
export interface DeliveryInformationProps extends OrderInformationProps {
dateFormat?: string;
}
export interface SubscriptionInformationProps {
orderInformation?: Array<OrderInformationProps>;
deliveryInformation?: DeliveryInformationProps;
}
export interface SubscriptionOrderInformationProps extends SubscriptionOrderInformationPlaceholderProps, CalendarState {
item?: SubscriptionInformationProps;
}