prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
21 lines (20 loc) • 665 B
TypeScript
import BarChart, { BarChartRule } from './BarChart';
import ChartAbstract, { ChartAbstractProps } from './ChartAbstract';
import ItemLegend from './legends';
import LineChart from './LineChart';
export type Charts = {
barChart?: BarChart[];
lineChart?: LineChart[];
};
export type BarLineChartProps = ChartAbstractProps & {
list: Charts[];
rules?: BarChartRule[] | BarChartRule[][];
legendData?: ItemLegend[];
isAppConstructor?: boolean;
};
export default class BarLineChart extends ChartAbstract {
list: Charts[];
rules?: BarChartRule[] | BarChartRule[][];
legendData: ItemLegend[];
constructor(props: BarLineChartProps);
}