deep-storage
Advanced tools
Comparing version 2.0.2 to 2.0.3
@@ -1,2 +0,2 @@ | ||
import { DeepStorage, UsesDeepStorage } from "./index"; | ||
import { DeepStorage } from "./index"; | ||
export declare enum AsyncStatus { | ||
@@ -13,3 +13,3 @@ Created = 0, | ||
} | ||
export interface DeepAsync<Response> extends DeepAsyncState<Response>, UsesDeepStorage<DeepAsyncState<Response>> { | ||
export interface DeepAsync<Response> extends DeepAsyncState<Response> { | ||
completed: boolean; | ||
@@ -16,0 +16,0 @@ succeeded: boolean; |
@@ -87,5 +87,2 @@ export * from './async'; | ||
} | ||
export interface UsesDeepStorage<State> { | ||
storage: DeepStorage<State>; | ||
} | ||
export declare type stringOrNumber = string | number; | ||
@@ -92,0 +89,0 @@ export declare type Path = stringOrNumber[]; |
{ | ||
"name": "deep-storage", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "Simple observable state management for reactive applications", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
@@ -1,2 +0,2 @@ | ||
import { DeepStorage, UsesDeepStorage } from "./index"; | ||
import { DeepStorage } from "./index"; | ||
@@ -16,3 +16,3 @@ export enum AsyncStatus { | ||
export interface DeepAsync<Response> extends DeepAsyncState<Response>, UsesDeepStorage<DeepAsyncState<Response>> { | ||
export interface DeepAsync<Response> extends DeepAsyncState<Response> { | ||
completed: boolean; | ||
@@ -19,0 +19,0 @@ succeeded: boolean; |
@@ -109,6 +109,2 @@ export * from './async'; | ||
export interface UsesDeepStorage<State> { | ||
storage: DeepStorage<State>; | ||
} | ||
export type stringOrNumber = string | number; | ||
@@ -115,0 +111,0 @@ export type Path = stringOrNumber[]; |
Sorry, the diff of this file is not supported yet
213031
1294