jade-integration-utils
Version:
A tool made for any type of http requisitions and to manage localstorage. This package works into Angular and Ionic projects (maybe you can run this in ReactNative, MAYBE!).
13 lines (12 loc) • 397 B
TypeScript
export declare class StorageService {
constructor();
static get(index: any): any;
static set(index: any, object: any): void;
static getSession(index: any): any;
static setSession(index: any, object: any): void;
static getTemp(): any;
static setTemp(object: any): void;
static clearTemp(): void;
static clear(): void;
static APIMaps(): string;
}