debug.d.ts 250 B

1
  1. export declare function debug<This, Args extends any[], Return>(name?: string): (fn: (this: This, ...args: Args) => Return, context?: ClassMethodDecoratorContext<This, (this: This, ...args: Args) => Return>) => (this: This, ...args: Args) => Return;