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 '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
}