UNPKG

ngx-store

Version:

Angular decorators to automagically keep variables in HTML5 LocalStorage, SessionStorage, cookies; injectable services for managing and listening to data changes and a bit more.

11 lines (10 loc) 305 B
export interface WebStorageConfigInterface { prefix?: string; previousPrefix?: string; clearType?: ClearType; mutateObjects?: boolean; cookiesScope?: string; cookiesCheckInterval?: number; debugMode?: boolean; } export declare type ClearType = 'decorators' | 'prefix' | 'all';