@lunarhue/react-native-web-wa-sqlite 1.0.9 → 1.0.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lunarhue/react-native-web-wa-sqlite",
3
- "version": "1.0.9",
3
+ "version": "1.0.10",
4
4
  "type": "module",
5
5
  "main": "src/sqlite-api.js",
6
6
  "types": "src/types/index.d.ts",
@@ -1,3 +1,8 @@
1
+ /**
2
+ * @module
3
+ */
4
+ export {};
5
+
1
6
  /**
2
7
  * This is a WebAssembly build of SQLite with experimental support for
3
8
  * writing SQLite virtual file systems and modules (for virtual tables)
@@ -7,6 +12,14 @@
7
12
  * @module
8
13
  */
9
14
 
15
+ declare module '@lunarhue/react-native-web-wa-sqlite/dist/wa-sqlite-async.mjs';
16
+ declare module '@lunarhue/react-native-web-wa-sqlite/src/examples/IDBBatchAtomicVFS.js' {
17
+ export class IDBBatchAtomicVFS {
18
+ constructor(name: string, options?: any);
19
+ static create(name: string, module: any, options?: any): Promise<any>;
20
+ }
21
+ }
22
+
10
23
  /**
11
24
  * Javascript types that SQLite can use
12
25
  *