nestjs-cls
Version:
A continuation-local storage module compatible with NestJS's dependency injection.
11 lines • 347 B
TypeScript
declare const TERMINAL_BRAND: unique symbol;
export declare class BrandedTerminal {
private [TERMINAL_BRAND]?;
}
/**
* Use the terminal type to prevent generation of property
* paths to nested properties of the type within the ClsStore
*/
export type Terminal<T> = T & BrandedTerminal;
export {};
//# sourceMappingURL=terminal.type.d.ts.map