Some checks failed
FarmMaps.Develop/FarmMapsLib/develop There was a failure building this commit
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
export function ForItemType(itemType: string) {
|
|
return function (constructor:Function) {
|
|
constructor.prototype.forItemType = itemType;
|
|
};
|
|
}
|