This commit is contained in:
2025-12-28 08:23:30 +01:00
commit 87c722b5ae
74 changed files with 10264 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
declare module 'sql.js' {
export default function initSqlJs(config?: { locateFile?: (file: string) => string }): Promise<any>;
export type Database = any;
export type Statement = any;
}