import {Reflect} from '../../utils/reflect'; export function modernDecorator( target: (this: This, ...args: Args) => Return, ): any { Reflect.defineMetadata('isSingleton', true, target); return target; }