UNPKG

ngx-store-9

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.

8 lines (7 loc) 303 B
import { WebStorageUtility } from '../utility/webstorage.utility'; export declare const CONFIG_PREFIX = "NGX-STORE_"; export declare class ConfigHelper { protected static _webStorageUtility: WebStorageUtility; static getItem(key: string): any; static setItem(key: string, item: any): any; }