| 123456789101112131415161718 |
- import { ProductData } from './productInterface';
- import { UserData } from './userInterface';
- import { ObjectId } from 'mongodb';
-
- interface ShippingData extends UserData {
- email: string;
- }
-
- export interface OrderData {
- products: Array<ProductData>;
- time: Date;
- shippingAddress: ShippingData;
- totalPrice: number;
- numberOfItems: number;
- fulfilled: boolean;
- owner: ObjectId;
- stripeCheckoutId: string;
- }
|