Betterzon/Backend/src/models/products/products.interface.ts

6 lines
104 B
TypeScript

import {Product} from './product.interface';
export interface Products {
[key: number]: Product;
}