You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

productInterface.ts 284B

123456789101112131415
  1. export interface ProductData {
  2. category: string;
  3. name: string;
  4. image: string;
  5. description: string;
  6. place: string;
  7. process: string;
  8. people: string;
  9. pairing: string;
  10. available: boolean;
  11. isFeatured: boolean;
  12. price: number;
  13. customID: string;
  14. stripeID: string;
  15. }