ngx-dev-toolbar
Version:
<div align="center">
19 lines (18 loc) • 679 B
TypeScript
import * as i0 from "@angular/core";
export declare class DevToolsStorageService {
private readonly PREFIX;
private readonly TOOLS_KEY;
private readonly SETTINGS_KEY;
set<T>(key: string, value: T): void;
get<T>(key: string): T | null;
remove(key: string): void;
getAllSettings(): Record<string, unknown>;
setAllSettings(settings: Record<string, unknown>): void;
clearAllSettings(): void;
getToolKeys(): string[];
private addToolKey;
private removeToolKey;
private getToolKey;
static ɵfac: i0.ɵɵFactoryDeclaration<DevToolsStorageService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<DevToolsStorageService>;
}