FarmMapsLib/projects/common/src/fm/models/item.types.ts

6 lines
100 B
TypeScript
Raw Normal View History

2019-07-15 14:54:19 +00:00
import { IItemType } from './item.type';
export interface IItemTypes{
[id: string]: IItemType;
2023-03-06 13:04:14 +00:00
}