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