UNPKG

ng2-webstorage

Version:
8 lines (7 loc) 233 B
import { EventEmitter } from '@angular/core'; export interface IStorage { store(key: string, value: any): void; retrieve(key: string): any; clear(key?: string): void; observe(key: string): EventEmitter<any>; }