prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
17 lines (16 loc) • 580 B
TypeScript
import FormAbstract, { FormAbstractProps } from './FormAbstract';
import ActionAbstract from '../../action/ActionAbstract';
import { TextInputProps as NewTextInputProps } from '../../common/types/TextInput';
export type TextInputList = NewTextInputProps & {
key?: string;
name?: string;
selected?: boolean;
};
export type TextInputProps = FormAbstractProps & {
list: TextInputList[];
};
export default class TextInput extends FormAbstract {
action?: ActionAbstract;
list: TextInputList[];
constructor(props: TextInputProps, action?: ActionAbstract);
}