prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
20 lines • 707 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.CardTable = void 0;
const CardAbstract_1 = require("./CardAbstract");
const CardTypes_1 = require("./CardTypes");
class CardTable extends CardAbstract_1.default {
constructor(props) {
super(props, CardTypes_1.default.CARD_TABLE);
this.ellipsis = props.ellipsis;
this.isClickable = props.isClickable;
this.isTooltip = props.isTooltip;
this.source = props.source;
this.tBody = props.tBody;
this.tHead = props.tHead;
this.updatedAt = props.updatedAt;
this.url = props.url;
}
}
exports.CardTable = CardTable;
//# sourceMappingURL=CardTable.js.map