UNPKG

bixi

Version:

企业级中后台前端解决方案

19 lines (15 loc) 376 B
import { Injectable } from '@angular/core'; import { Subject } from 'rxjs'; @Injectable() export class BixiTableService { updateView$ = new Subject<string>(); /** * @deprecated we will remove it in 10.0 */ updateView(tableId: string = '') { this.updateView$.next(tableId); } forceUpdate(tableId: string = '') { this.updateView$.next(tableId); } }