prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
24 lines (23 loc) • 618 B
TypeScript
import ActionAbstract from './ActionAbstract';
export type FormActionProps = {
color?: string;
customModalTitle?: string;
dataForm: unknown;
desc: string;
isPlaying?: boolean;
label: string;
path?: string;
searchPlaceHolder?: string;
value?: number | string;
warningModalMessage?: string;
};
export default class FormAction extends ActionAbstract {
customModalTitle?: string;
dataForm: unknown;
desc: string;
path?: string;
searchPlaceHolder?: string;
value?: number | string;
warningModalMessage?: string;
constructor(props: FormActionProps);
}