@foblex/platform
Version:
An Angular library providing a set of services for supporting server-side rendering (SSR) and other features.
11 lines (10 loc) • 464 B
TypeScript
import { ILocalStorage } from './i-local-storage';
import * as i0 from "@angular/core";
export declare class BrowserLocalStorageService implements ILocalStorage {
setItem(key: string, value: string): void;
getItem(key: string): string | null;
removeItem(key: string): void;
clear(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<BrowserLocalStorageService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<BrowserLocalStorageService>;
}