declare global { interface IPrototype { // eslint-disable-next-line @typescript-eslint/no-explicit-any prototype: any; } interface IObject extends Record {} type TypedMethodDecorator = ( target: object, propertyKey: string | symbol, descriptor: TypedPropertyDescriptor ) => TypedPropertyDescriptor | void; } export {};