UNPKG

protoobject

Version:

A universal class for creating any JSON objects and simple manipulations with them.

7 lines (6 loc) 228 B
/** * Use this decorator to check the static properties of a class * * Example: `@StaticImplements<ProtoObjectStaticMethods<User>>()` */ export declare const StaticImplements: <T>() => <U extends T>(constructor: U) => void;