UNPKG

prodap-chatbot-domain

Version:

Classes utilizadas na resposta de todas as Intents do Assistente Virtual

16 lines 545 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const ChartAbstract_1 = require("./ChartAbstract"); const ChartTypes_1 = require("./ChartTypes"); class AreaChart extends ChartAbstract_1.default { constructor(props) { super(props, ChartTypes_1.default.AREA_CHART, ''); this.data = []; this.legendData = []; const { data, legendData } = props; this.data = data; this.legendData = legendData; } } exports.default = AreaChart; //# sourceMappingURL=AreaChart.js.map