UNPKG

ngx-pluto

Version:
13 lines (12 loc) 306 B
import { Subject, Observable } from "rxjs"; export declare class NotifyService { protected _notifySubject: Subject<Event>; constructor(); notify(key: string, value: any): void; get(key: string): Observable<any>; } interface Event { key: string; value: any; } export {};