Skip to content

Instantly share code, notes, and snippets.

@nomadts
Created August 23, 2023 07:20
Show Gist options
  • Save nomadts/f99d2bd7f459e5fcce77d3e00815f104 to your computer and use it in GitHub Desktop.
Save nomadts/f99d2bd7f459e5fcce77d3e00815f104 to your computer and use it in GitHub Desktop.
interface CartItem {
productId: string;
productName: string;
price: number;
quantity: number;
}
interface ShoppingCart {
items: CartItem[];
totalAmount: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment