UNPKG

ng-storage-local

Version:

An Angular module that makes Web Storage working in the Angular Way

14 lines (13 loc) 309 B
export declare const enum StorageTypeUnit { JSON = "JSON", STRING = "STRING" } export interface StorageConfig { storageType: StorageTypeUnit; storageKey: string; storageData: JSON | string; } export interface GetStorageConflig { storageType: StorageTypeUnit; storageKey: string; }