FarmMapsLib/projects/common-map/src/fm-map/components/for-item/for-itemtype.decorator.ts

6 lines
148 B
TypeScript

export function ForItemType(itemType: string) {
return function (constructor:Function) {
constructor.prototype.forItemType = itemType;
};
}