UNPKG

effect-sql-kysely

Version:

A full-featured integration between `@effect/sql` and `Kysely` that provides type-safe database operations with Effect's powerful error handling and resource management.

10 lines (9 loc) 313 B
export declare class DeferredPromise<T> { readonly _promise: Promise<T>; _resolve?: (value: T | PromiseLike<T>) => void; _reject?: (reason?: unknown) => void; constructor(); get promise(): Promise<T>; resolve: (value: T | PromiseLike<T>) => void; reject: (reason?: unknown) => void; }