UNPKG

@elastic/charts

Version:

Elastic-Charts data visualization library

11 lines 363 B
import type { ChartType } from '../chart_types'; /** @public */ export interface Spec { /** unique Spec identifier */ id: string; /** Chart type define the type of chart that use this spec */ chartType: ChartType; /** The type of spec, can be series, axis, annotation, settings etc */ specType: string; } //# sourceMappingURL=spec.d.ts.map