prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
11 lines (10 loc) • 319 B
TypeScript
import { ActionAbstractProps, HttpMethods } from '../../action';
import { IconType } from './IconType';
import { TextType } from './TextType';
export type Action = ActionAbstractProps & {
desc?: TextType | number;
method?: HttpMethods;
openIcon?: IconType;
order?: number;
statusIcon?: IconType;
};