UNPKG

abc-charts

Version:

Widget render for using in 'ABC consulting' projects

17 lines (16 loc) 405 B
import { WidgetType, ServerType } from "../../types"; import { DataSet } from './dataSet'; import { ISettings } from "../ISettings"; export interface WidgetTemplate { id: string | null; title: string; widgetType: WidgetType; server: ServerType; dataSets: DataSet[]; settings?: ISettings; _links: { self?: { href: string; }; }; }