Repository URL to install this package:
|
Version:
2.6.18 ▾
|
@skava/ui
/
dist
/
components
/
presets
/
Subscription
/
SubscriptionOrderInformation
/
typings.d.ts
|
|---|
import { SubscriptionOrderInformationProps as SubscriptionOrderInformationPlaceholderProps } from 'abstractions/Subscription/SubscriptionOrderInformation';
import { CalendarState } from '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;
}