UNPKG

godot-sqlite-kysely

Version:

Kysely dialect for godot-sqlite. Adds SQLite support to Godot/GodotJS.

11 lines (10 loc) 462 B
import { Driver, Kysely, Dialect, QueryCompiler, DialectAdapter, DatabaseIntrospector } from 'kysely'; import type { GodotSQLiteKyselyConfig } from './types'; export declare class GodotSQLiteKyselyDialect implements Dialect { #private; constructor(config: GodotSQLiteKyselyConfig); createDriver(): Driver; createQueryCompiler(): QueryCompiler; createAdapter(): DialectAdapter; createIntrospector(db: Kysely<any>): DatabaseIntrospector; }