/* eslint-disable @typescript-eslint/no-unused-expressions *//**
* Use this decorator to check the static properties of a class
*
* Example: `@StaticImplements<ProtoObjectStaticMethods<User>>()`
*/exportconstStaticImplements = () => {
return(constructor) => {
constructor;
};
};