types.ts 76 B

12345
  1. export interface Product {
  2. id: number;
  3. name: string;
  4. price: number;
  5. }