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

Implemented by

Properties

Properties

getStore: (() => any)

Type declaration

    • (): any
    • Returns any

run: ((store, callback) => any)

Type declaration

    • (store, callback): any
    • Parameters

      • store: any
      • callback: (() => any)
          • (): any
          • Returns any

      Returns any

Generated using TypeDoc