sqlocal
Version:
SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.
16 lines (15 loc) • 543 B
TypeScript
import type { Dialect } from 'kysely';
import { SQLocal } from '../index.js';
/**
* A subclass of the `SQLocal` client that provides an additional property
* for using SQLocal as a dialect for the Kysely query builder.
* @see {@link https://sqlocal.dev/kysely/setup}
*/
export declare class SQLocalKysely extends SQLocal {
/**
* A Kysely dialect that implements the interface needed for
* Kysely to interact with databases through SQLocal.
* @see {@link https://sqlocal.dev/kysely/setup}
*/
dialect: Dialect;
}