UNPKG

godot-sqlite-kysely

Version:

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

5 lines (4 loc) 282 B
import { SQLite } from 'godot.lib.api'; import { GodotSQLiteKyselyConnectionConfig } from './types'; export declare function createSQLiteConnection(config: GodotSQLiteKyselyConnectionConfig): SQLite; export declare function getResultRows(client: SQLite): Record<string, unknown>[];