import { GenObject } from './genObject'; import { PropertyObject } from './propertyObject'; import { StyleObject } from './styleObject'; export interface Element extends GenObject { elemType: 'chart' | 'kpi' | 'label'; subType: 'bar' | 'line' | 'pie' | 'kpi' | 'label'; step: 'Element' | 'EndPoint' | 'Properties'; endPoint: string; properties: PropertyObject[]; styles: StyleObject[]; } export default Element;