Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
presets
/
Subscription
/
SubscriptionOrderInformation
/
typings.ts
|
|---|
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
}