NoopContextManager.d.ts 443 B

123456789
  1. import * as types from './types';
  2. export declare class NoopContextManager implements types.ContextManager {
  3. active(): types.Context;
  4. with<A extends unknown[], F extends (...args: A) => ReturnType<F>>(_context: types.Context, fn: F, thisArg?: ThisParameterType<F>, ...args: A): ReturnType<F>;
  5. bind<T>(_context: types.Context, target: T): T;
  6. enable(): this;
  7. disable(): this;
  8. }
  9. //# sourceMappingURL=NoopContextManager.d.ts.map