Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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
}