deep-storage
Advanced tools
Comparing version 1.0.8 to 1.0.9
@@ -0,1 +1,2 @@ | ||
export * from './async'; | ||
export declare type StateUpdateCallback = <DeepState>(path: Path, newState: DeepState, oldState: DeepState) => void; | ||
@@ -2,0 +3,0 @@ export interface DeepSubscriptions { |
@@ -37,3 +37,7 @@ "use strict"; | ||
}; | ||
function __export(m) { | ||
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p]; | ||
} | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
__export(require("./async")); | ||
/** | ||
@@ -40,0 +44,0 @@ * Is one array a prefix on another e.g. |
{ | ||
"name": "deep-storage", | ||
"version": "1.0.8", | ||
"version": "1.0.9", | ||
"description": "Simple observable state management for reactive applications", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -0,1 +1,3 @@ | ||
export * from './async'; | ||
export type StateUpdateCallback = <DeepState>(path: Path, newState: DeepState, oldState: DeepState) => void; | ||
@@ -2,0 +4,0 @@ |
Sorry, the diff of this file is not supported yet
191811
1264