@luvio/durable-store-idb 0.138.2 → 0.138.4

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.
@@ -2,7 +2,7 @@
2
2
  * Helper methods to make working with IDB more promise-based. Also simplifies
3
3
  * IDB schema concepts to just having a single "kvp" store per DB.
4
4
  */
5
- export declare type KeyValue<T = unknown> = {
5
+ export type KeyValue<T = unknown> = {
6
6
  key: IDBValidKey;
7
7
  value: T;
8
8
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@luvio/durable-store-idb",
3
- "version": "0.138.2",
3
+ "version": "0.138.4",
4
4
  "description": "IndexedDB-based implementation of the Luvio DurableStore",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,7 +10,7 @@
10
10
  "license": "MIT",
11
11
  "main": "dist/durable-store-idb.js",
12
12
  "module": "dist/durable-store-idb.js",
13
- "types": "dist/main.d.ts",
13
+ "types": "dist/types/main.d.ts",
14
14
  "files": [
15
15
  "dist/"
16
16
  ],
@@ -23,7 +23,7 @@
23
23
  "watch": "yarn build --watch"
24
24
  },
25
25
  "devDependencies": {
26
- "@luvio/environments": "^0.138.2",
26
+ "@luvio/environments": "^0.138.4",
27
27
  "fake-indexeddb": "^4.0.1"
28
28
  },
29
29
  "volta": {