ng2-webstorage
Version:
Angular webstorage manager
12 lines (11 loc) • 542 B
TypeScript
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;
}