import { Observable } from 'rxjs'; import { IDestroyable } from '../../common'; export interface IModelSource extends IDestroyable { readonly id: string; readonly dataSourceConfigID: string; readonly value: any; readonly model$: Observable; switchConfigSource(): any; switchDataSource(dataSourceConfigID: string): any; }