Repository URL to install this package:
|
Version:
2.7.3 ▾
|
@skava/ui
/
dist
/
components
/
abstractions
/
Subscription
/
SubscriptionOrderInformation
/
typings.d.ts
|
|---|
import { ReactNode } from 'react';
export interface SubscriptionOrderInformationRenderProp extends Function {
(props: SubscriptionOrderInformationProps): ReactNode;
}
export interface SubscriptionOrderInformationProps {
className?: string;
children?: ReactNode;
renderDeliveryInformation?: SubscriptionOrderInformationRenderProp;
renderOrderInformation?: SubscriptionOrderInformationRenderProp;
renderBox?: SubscriptionOrderInformationRenderProp;
renderWrapper?: SubscriptionOrderInformationRenderProp;
}