Skip to content

Instantly share code, notes, and snippets.

@CharGrnmn
Created November 11, 2019 10:55
Show Gist options
  • Select an option

  • Save CharGrnmn/158ec7c34c8a9e5e0a5744bda7083482 to your computer and use it in GitHub Desktop.

Select an option

Save CharGrnmn/158ec7c34c8a9e5e0a5744bda7083482 to your computer and use it in GitHub Desktop.
Nrwl data-persistence file
/**
* @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