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 { SubscriptionOrderInfoProps as SubscriptionOrderInfoPlaceholderProps } from 'abstractions/Subscription/SubscriptionOrderInformation'
import { MySubscriptionInfoProps } from '../MySubscriptionCard'

export interface OrderLinkProps {
  value?: string
  src?: string
}

export interface OrderInfoDetailProps {
  label?: string
  value?: string
}

export interface SubscriptionInfoProps extends MySubscriptionInfoProps {
  orderInfoDetails?: Array<OrderInfoDetailProps>
  orderInfoLink?: OrderLinkProps
}

export interface SubscriptionOrderInfoProps
  extends SubscriptionOrderInfoPlaceholderProps {
  item?: SubscriptionInfoProps
}