Repository URL to install this package:
|
Version:
2.1.0 ▾
|
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 declare type PaymentInfoType = PaymentInfo;
export interface PaymentSummaryProps extends PaymentSummaryPlaceholderProps {
shippingAddressInfo?: PaymentInfoType;
shippingMethodInfo?: PaymentInfoType;
paymentMethodInfo?: PaymentInfoType;
orderSummaryInfo?: SelectionListProps;
isSubscriptionItem?: boolean;
}