protoobject
Version:
A universal class for creating any JSON objects and simple manipulations with them.
16 lines • 499 B
JavaScript
;
/* eslint-disable @typescript-eslint/no-unused-expressions */
Object.defineProperty(exports, "__esModule", { value: true });
exports.StaticImplements = void 0;
/**
* Use this decorator to check the static properties of a class
*
* Example: `@StaticImplements<ProtoObjectStaticMethods<User>>()`
*/
const StaticImplements = () => {
return (constructor) => {
constructor;
};
};
exports.StaticImplements = StaticImplements;
//# sourceMappingURL=static-implements.js.map