UNPKG
@credo/cls
Version:
latest (0.0.1)
0.0.1
Continuation Local Storage for Credo application
herculesinc/credo.cls
@credo/cls
/
credo-cls.d.ts
12 lines
(9 loc)
•
256 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
declare
module
"@credo/cls"
{
export
interface Context {
id
: string; }
export
function
setContext(
id
: string);
export
function
getContext(): Context;
export
function
enable
();
export
function
disable
(); }