@elastic/charts
Version:
Elastic-Charts data visualization library
10 lines • 346 B
TypeScript
/** @public */
export type ChartSizeArray = [number | string | undefined, number | string | undefined];
/** @public */
export interface ChartSizeObject {
width?: number | string;
height?: number | string;
}
/** @public */
export type ChartSize = number | string | ChartSizeArray | ChartSizeObject;
//# sourceMappingURL=chart_size.d.ts.map