@livestore/wa-sqlite 1.0.1-dev.7 → 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 +7 -0
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -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";
|