prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
12 lines (11 loc) • 356 B
TypeScript
import { TextType } from '../../common/types';
import TextAbstract, { TextAbstractProps } from './TextAbstract';
export type TextProps = TextAbstractProps & {
list?: TextType[];
listOrderedIds?: string[];
};
export default class Text extends TextAbstract {
list?: TextType[];
listOrderedIds?: string[];
constructor(props: TextProps);
}