Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
Size: Mime:
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;
}