@livestore/wa-sqlite 1.0.1-dev.6 → 1.0.1-dev.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types/index.d.ts +8 -1
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -611,7 +611,7 @@ interface SQLiteAPI {
|
|
|
611
611
|
zFilename: string,
|
|
612
612
|
iFlags?: number,
|
|
613
613
|
zVfs?: string
|
|
614
|
-
):
|
|
614
|
+
): number;
|
|
615
615
|
|
|
616
616
|
/**
|
|
617
617
|
* Specify callback to be invoked between long-running queries
|
|
@@ -1245,6 +1245,13 @@ declare module '@livestore/wa-sqlite/src/VFS.js' {
|
|
|
1245
1245
|
}
|
|
1246
1246
|
}
|
|
1247
1247
|
|
|
1248
|
+
declare module '@livestore/wa-sqlite/src/examples/AccessHandlePoolVFS.js' {
|
|
1249
|
+
import * as VFS from "@livestore/wa-sqlite/src/VFS.js";
|
|
1250
|
+
export class IndexedDbVFS extends VFS.Base {
|
|
1251
|
+
constructor(name: string, module: any)
|
|
1252
|
+
}
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1248
1255
|
/** @ignore */
|
|
1249
1256
|
declare module '@livestore/wa-sqlite/src/examples/IndexedDbVFS.js' {
|
|
1250
1257
|
import * as VFS from "@livestore/wa-sqlite/src/VFS.js";
|