prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
14 lines (13 loc) • 345 B
TypeScript
import CardAbstract, { CardAbstractProps } from './CardAbstract';
type Info = {
text: string;
subText: string;
extraText: string;
value: number;
};
export default class CardListInfos extends CardAbstract {
list: Info[];
constructor(cardProps: CardAbstractProps);
addList(...list: Info[]): CardListInfos;
}
export {};