UNPKG

ng2-webstorage

Version:
12 lines (11 loc) 542 B
import { IWebStorage } from '../interfaces/webStorage'; export declare function isManagedKey(sKey: string): boolean; export declare class KeyStorageHelper { static isManagedKey(sKey: string): boolean; static retrieveKeysFromStorage(storage: IWebStorage): Array<string>; static genKey(raw: string): string; static formatKey(raw: string): string; static setStorageKeyPrefix(key?: string): void; static setCaseSensitivity(enable?: boolean): void; static setStorageKeySeparator(separator?: string): void; }