mirror of
https://github.com/Mueller-Patrick/Betterzon.git
synced 2025-04-29 20:09:18 +00:00
6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
import {Product} from './product.interface';
|
|
|
|
export interface Products {
|
|
[key: number]: Product;
|
|
}
|