Refactor 4 with bugfixes

This commit is contained in:
2026-03-04 03:56:23 +01:00
parent be91b6dfe8
commit 0ed9ca93d3
51 changed files with 1552 additions and 996 deletions

View File

@@ -1,6 +1,9 @@
declare module 'sql.js';
declare module 'sql.js' {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export default function initSqlJs(config?: { locateFile?: (file: string) => string }): Promise<any>;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type Database = any;
// eslint-disable-next-line @typescript-eslint/no-explicit-any
export type Statement = any;
}