@nkzw/fate-indexeddb 1.5.1 → 1.5.2

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.
Files changed (2) hide show
  1. package/lib/index.d.mts +3 -4
  2. package/package.json +5 -5
package/lib/index.d.mts CHANGED
@@ -1,8 +1,7 @@
1
1
  import { PersistenceStorage } from "@nkzw/fate/persistence";
2
2
  //#region src/index.d.ts
3
- type IndexedDBStorageOptions = Readonly<{
3
+ export type IndexedDBStorageOptions = Readonly<{
4
4
  name?: string;
5
5
  }>;
6
- declare function createIndexedDBStorage({ name }?: IndexedDBStorageOptions): PersistenceStorage;
7
- //#endregion
8
- export { IndexedDBStorageOptions, createIndexedDBStorage };
6
+ export declare function createIndexedDBStorage({ name }?: IndexedDBStorageOptions): PersistenceStorage;
7
+ //#endregion
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nkzw/fate-indexeddb",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Optional IndexedDB persistence adapter for fate.",
5
5
  "license": "MIT",
6
6
  "files": [
@@ -19,10 +19,10 @@
19
19
  "idb": "^8.0.3"
20
20
  },
21
21
  "devDependencies": {
22
- "fake-indexeddb": "^6.2.4",
23
- "vite": "npm:@voidzero-dev/vite-plus-core@0.3.0",
24
- "vite-plus": "0.3.0",
25
- "@nkzw/fate": "1.5.1"
22
+ "@nkzw/fate": "^1.5.1",
23
+ "fake-indexeddb": "^6.2.5",
24
+ "vite": "npm:@voidzero-dev/vite-plus-core@0.3.2",
25
+ "vite-plus": "0.3.2"
26
26
  },
27
27
  "peerDependencies": {
28
28
  "@nkzw/fate": "^1.5.1"