import { AsyncLocalStorage } from "node:async_hooks"; //#region src/async-context/index.d.ts declare class AsyncVariable { als: AsyncLocalStorage; get(): T | undefined; run(value: T, fn: () => R): R; } declare class AsyncContext { static Variable: typeof AsyncVariable; } //#endregion export { AsyncContext }; //# sourceMappingURL=index.d.cts.map