@livestore/wa-sqlite 1.0.1-dev.13 → 1.0.1-dev.15
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 -0
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -1252,6 +1252,14 @@ declare module '@livestore/wa-sqlite/src/examples/AccessHandlePoolVFS.js' {
|
|
|
1252
1252
|
}
|
|
1253
1253
|
}
|
|
1254
1254
|
|
|
1255
|
+
declare module '@livestore/wa-sqlite/src/examples/OPFSCoopSyncVFS.js' {
|
|
1256
|
+
import * as VFS from "@livestore/wa-sqlite/src/VFS.js";
|
|
1257
|
+
export class OPFSCoopSyncVFS extends VFS.Base {
|
|
1258
|
+
constructor(name: string, module: any)
|
|
1259
|
+
static create(name: string, module: any): Promise<OPFSCoopSyncVFS>;
|
|
1260
|
+
}
|
|
1261
|
+
}
|
|
1262
|
+
|
|
1255
1263
|
/** @ignore */
|
|
1256
1264
|
declare module '@livestore/wa-sqlite/src/examples/IndexedDbVFS.js' {
|
|
1257
1265
|
import * as VFS from "@livestore/wa-sqlite/src/VFS.js";
|