UNPKG

@ydbjs/query

Version:

High-level, type-safe YQL query and transaction client for YDB. Supports tagged template syntax, parameter binding, transactions, and statistics.

10 lines 303 B
import { AsyncLocalStorage } from "node:async_hooks"; import type { Abortable } from "node:events"; type Context = Abortable & { nodeId?: bigint; sessionId?: string; transactionId?: string; }; export declare const ctx: AsyncLocalStorage<Context>; export {}; //# sourceMappingURL=ctx.d.ts.map