boxpay-checkout-reactnative-sdk
Version:
Boxpay Payment Gateway
16 lines • 532 B
TypeScript
export interface OrderDetailsProps {
totalAmount: string;
itemsArray: ItemsProp[];
subTotalAmount: string;
shippingAmount: string;
taxAmount: string;
}
export interface ItemsProp {
imageUrl: string;
imageTitle: string;
imageOty: number;
imageAmount: string;
}
declare const OrderDetails: ({ totalAmount, itemsArray, subTotalAmount, shippingAmount, taxAmount, }: OrderDetailsProps) => import("react/jsx-runtime").JSX.Element;
export default OrderDetails;
//# sourceMappingURL=orderDetails.d.ts.map