interface AsyncLocalStorageInterface {
    getStore: (() => any);
    run: (<T>(store: any, callback: (() => T)) => T);
}

Implemented by

Properties

Properties

getStore: (() => any)
run: (<T>(store: any, callback: (() => T)) => T)