import { Observable } from 'rxjs'; /** * Types */ export interface DataSourceOpts { forceReload?: number; } export interface DataSourceStream { name: string; stream: Observable>; optional?: boolean; weight?: number; } /** * Lists, Selectors and AutoCompleters Options */ export interface DataSourceItem { value: any; title: any; subtitle?: any; note?: any; route?: any; disabled?: boolean; [field: string]: any; }