@asi-ngtools/lib
Version:
This project is a little components library, simple to use, which will help you to simplify your project.
12 lines (11 loc) • 358 B
TypeScript
export declare class AsiSessionStorageService {
private platformId;
private sessionStorage;
constructor(platformId: any);
setItem(key: string, value: string): void;
getItem(key: string): string;
setObjectItem(key: string, value: any): void;
getObjectItem(key: string): any;
removeItem(key: string): void;
clear(): void;
}