9 lines
172 B
TypeScript
9 lines
172 B
TypeScript
import { ChartType } from 'chart.js';
|
|
import { ChartAxis } from './chart-type';
|
|
|
|
export interface ChartConfig {
|
|
type: ChartType;
|
|
title?: string;
|
|
axis: ChartAxis[];
|
|
}
|