Repository URL to install this package:
|
Version:
2.1.12 ▾
|
import { ReactNode } from 'react'
import { SubscriptionOrderInformationProps as SubscriptionOrderInformationPlaceholderProps } from 'abstractions/Subscription/SubscriptionOrderInformation'
import { CalendarProps, 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
}