UNPKG

effect-sql-kysely

Version:

`effect-sql-kysely` is an full-featured integration between `@effect/sql` and `Kysely`.

9 lines (8 loc) 350 B
import * as Sql from "@effect/sql"; import { type Kysely } from "kysely"; export declare function makeSqlClient<DB>({ database, compiler, spanAttributes, chunkSize, }: { database: Kysely<DB>; compiler: Sql.Statement.Compiler; spanAttributes?: ReadonlyArray<readonly [string, string]>; chunkSize?: number; }): Sql.SqlClient.SqlClient;