UNPKG

@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) 354 B
export declare class AsiLocalStorageService { private platformId; private localStorage; 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; }