plutoapi-v2/src/models/betterzon/products/products.interface.ts
Patrick Mueller 0325534d53
All checks were successful
Jenkins Production Deployment
Better connection handling
2022-06-26 14:48:00 +02:00

6 lines
101 B
TypeScript

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