Created
November 11, 2019 10:55
-
-
Save CharGrnmn/158ec7c34c8a9e5e0a5744bda7083482 to your computer and use it in GitHub Desktop.
Nrwl data-persistence file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * @whatItDoes Provides convenience methods for implementing common operations of persisting data. | |
| */ | |
| export declare class DataPersistence <T> { | |
| store: Store<T>; | |
| actions: Actions; | |
| constructor(store: Store<T>, actions: Actions); | |
| // ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment