| 74 | } |
| 75 | ); |
| 76 | export interface LazyHttpDatabase extends Database { |
| 77 | lazyFiles: Map<string, { contents: LazyUint8Array }>; |
| 78 | filename: string; |
| 79 | query: <T = any>(query: string, ...params: any[]) => T[]; |
| 80 | create_vtab: (cons: { |
| 81 | new (sqljs: SqljsEmscriptenModuleType, db: Database): sqlite3_module; |
| 82 | }) => void; |
| 83 | } |
| 84 | export type SqliteStats = { |
| 85 | filename: string; |
| 86 | totalBytes: number; |
nothing calls this directly
no outgoing calls
no test coverage detected