Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
abstractions
/
Subscription
/
SubscriptionOrderInformation
/
typings.ts
|
|---|
import { ReactNode } from 'react'
export interface SubscriptionOrderInfoRenderProp extends Function {
(props: SubscriptionOrderInfoProps): ReactNode
}
export interface SubscriptionOrderInfoProps {
className?: string
children?: ReactNode
renderActionLink?: SubscriptionOrderInfoRenderProp
renderDetails?: SubscriptionOrderInfoRenderProp
renderWrapper?: SubscriptionOrderInfoRenderProp
}