UNPKG

boxpay-checkout-reactnative-sdk

Version:
16 lines 532 B
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