Repository URL to install this package:
Version:
0.9.6 ▾
|
import { ReactNode } from 'react'
import { SelectionListProps } from 'presets/SectionList/typings'
import { PaymentSummaryProps as PaymentSummaryPlaceholderProps } from 'abstractions/Order/PaymentSummary/typings'
export interface PaymentSummaryRenderProp extends Function {
(props: PaymentSummaryProps): ReactNode
}
export interface PaymentInfo {
title?: string
value?: string
}
export type PaymentInfoType = PaymentInfo
export interface PaymentSummaryProps extends PaymentSummaryPlaceholderProps {
shippingAddressInfo?: PaymentInfoType
shippingMethodInfo?: PaymentInfoType
paymentMethodInfo?: PaymentInfoType
orderSummaryInfo?: SelectionListProps
}