bixi
Version:
企业级中后台前端解决方案
19 lines (15 loc) • 376 B
text/typescript
import { Injectable } from '@angular/core';
import { Subject } from 'rxjs';
()
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);
}
}