UNPKG

jqwidgets-scripts-custom

Version:

jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.

20 lines (16 loc) 506 B
import { Injectable } from '@angular/core'; import { Subject } from 'rxjs/Subject'; import { Observable } from 'rxjs'; @Injectable() export class InfoService { private information = new Subject<any>(); public setItemsData(info: any) { this.information.next({ items: info }); } public clearItemsData() { this.information.next(); } public getItemsData(item?: string): Observable<any> { return this.information.asObservable(); } }