This commit is contained in:
2025-12-28 05:37:19 +01:00
commit 87c722b5ae
74 changed files with 10264 additions and 0 deletions

5
server/src/types/sqljs.d.ts vendored Normal file
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;
}