prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
13 lines (12 loc) • 384 B
TypeScript
import { TextType } from '../../common/types';
import Message from '../base/Message';
import { Indicator } from '../text';
export type SuggestionSectionProps = {
title: TextType;
indicatorButtons: Indicator[];
};
export default class SuggestionSection extends Message {
title: TextType;
indicatorButtons: Indicator[];
constructor(props: SuggestionSectionProps);
}