@proscom/prostore
Advanced tools
Comparing version 0.0.4 to 0.0.5
@@ -50,2 +50,3 @@ import { IStore } from './IStore'; | ||
setContextValue(context: IProstoreSsrContext): void; | ||
reset(): void; | ||
} |
@@ -84,4 +84,7 @@ "use strict"; | ||
} | ||
reset() { | ||
this.state = Object.assign({}, exports.initialRequestState, { loaded: true }); | ||
} | ||
} | ||
exports.RequestStore = RequestStore; | ||
//# sourceMappingURL=RequestStore.js.map |
{ | ||
"name": "@proscom/prostore", | ||
"version": "0.0.4", | ||
"version": "0.0.5", | ||
"description": "> TODO: description", | ||
@@ -27,3 +27,3 @@ "author": "Andrew Starostin <a.starostin@proscom.ru>", | ||
}, | ||
"gitHead": "7bf9e966aac61282cfeb3912d14dfaf7b5f4b5df" | ||
"gitHead": "77a672e5ae9c126e5d7d679f2d03fd54a4cb2d9a" | ||
} |
@@ -142,2 +142,9 @@ import {IStore} from './IStore'; | ||
reset() { | ||
this.state = { | ||
...initialRequestState, | ||
loaded: true | ||
}; | ||
} | ||
} |
Sorry, the diff of this file is not supported yet
22394
461