UNPKG

@foblex/platform

Version:

An Angular library providing a set of services for supporting server-side rendering (SSR) and other features.

7 lines (6 loc) 177 B
export interface ILocalStorage { setItem(key: string, value: string): void; getItem(key: string): string | null; removeItem(key: string): void; clear(): void; }