src/app/Cart.ts
Properties |
_id |
_id:
|
Type : string
|
items |
items:
|
Type : CartItem[]
|
user |
user:
|
Type : string
|
export interface Cart {
_id: string;
user: string;
items: CartItem[];
}
export interface CartItem {
menuItem: {
_id:string;
name: string;
price: number;
};
quantity: number;
}