sqlocal
Version:
SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.
11 lines (10 loc) • 401 B
TypeScript
import { SQLocal } from '../index.js';
import type { RawResultData, Sqlite3Method } from '../types.js';
export declare class SQLocalDrizzle extends SQLocal {
driver: (sql: string, params: unknown[], method: Sqlite3Method) => Promise<RawResultData>;
batchDriver: (queries: {
sql: string;
params: unknown[];
method: Sqlite3Method;
}[]) => Promise<RawResultData[]>;
}