plutoapi-v2/src/models/betterzon/products/products.interface.ts
Patrick Müller 88569f8a40
All checks were successful
Jenkins Production Deployment
Adding betterzon api to plutoapi
2021-11-11 11:52:27 +01:00

6 lines
104 B
TypeScript

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