opendash
Version:
open.DASH data visualization framework
10 lines (9 loc) • 375 B
TypeScript
import { SourceInterface, SourceService, AppInterface } from "..";
export declare class SourceAdapterContext {
private service;
private app;
constructor(service: SourceService, app: AppInterface);
setLoading(value: boolean): void;
setSources(sources: Array<SourceInterface>): void;
updateSources(id: string, source: SourceInterface): void;
}