UNPKG

@dotgov/core

Version:

DGS core.

15 lines (14 loc) 516 B
import { EventEmitter } from '@angular/core'; export declare class StorageService { private _storage; private _inProgress; constructor(); get(key: string): any; set(key: string, value: any): void; remove(key: string, taskId?: any): any[]; removeMatched(match: string): void; clearCache(): void; protected getProgress(key: string): EventEmitter<any> | undefined | null; protected deleteProgress(key: string): void; protected setProgress(key: string): void; }