locality-idb 1.5.8 → 1.5.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/README.md +7 -7
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1257,6 +1257,13 @@ await db.export({
|
|
|
1257
1257
|
});
|
|
1258
1258
|
```
|
|
1259
1259
|
|
|
1260
|
+
> **Note:**
|
|
1261
|
+
>
|
|
1262
|
+
> - Automatically triggers a file download in the browser.
|
|
1263
|
+
> - Exported data includes all records from specified tables.
|
|
1264
|
+
> - Use for backup, debugging, or data migration.
|
|
1265
|
+
> - File download works in browser environments only.
|
|
1266
|
+
|
|
1260
1267
|
**Exported JSON Structure:**
|
|
1261
1268
|
|
|
1262
1269
|
```typescript
|
|
@@ -1333,13 +1340,6 @@ Drops an object store by name and bumps the database version internally.
|
|
|
1333
1340
|
await db.dropTable('users');
|
|
1334
1341
|
```
|
|
1335
1342
|
|
|
1336
|
-
> **Note:**
|
|
1337
|
-
>
|
|
1338
|
-
> - Automatically triggers a file download in the browser.
|
|
1339
|
-
> - Exported data includes all records from specified tables.
|
|
1340
|
-
> - Use for backup, debugging, or data migration.
|
|
1341
|
-
> - File download works in browser environments only.
|
|
1342
|
-
|
|
1343
1343
|
---
|
|
1344
1344
|
|
|
1345
1345
|
#### Static Methods
|