context.d.ts 335 B

123456
  1. import { Context } from './types';
  2. /** Get a key to uniquely identify a context value */
  3. export declare function createContextKey(description: string): symbol;
  4. /** The root context is used as the default parent context when there is no active context */
  5. export declare const ROOT_CONTEXT: Context;
  6. //# sourceMappingURL=context.d.ts.map