Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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. }