UNPKG

@electric-sql/drivers

Version:

ElectricSQL database drivers.

11 lines (10 loc) 262 B
export type DbName = string; export type SqlValue = string | number | null | Uint8Array | bigint; export type Row = { [key: string]: SqlValue; }; export type BindParams = SqlValue[] | Row; export type Statement = { sql: string; args?: SqlValue[]; };