prodap-chatbot-domain
Version:
Classes utilizadas na resposta de todas as Intents do Assistente Virtual
17 lines (16 loc) • 524 B
TypeScript
import { HttpAction } from '../../action';
import { List } from '../../message/list';
import { Action } from './Action';
import { IconType } from './IconType';
import { StyleType } from './StyleType';
import { TextType } from './TextType';
export type CollapseType = Action & TextType & {
expandedDivider?: boolean;
isExpanded?: boolean;
subList?: (string | HttpAction | List)[];
url?: string;
style?: StyleType;
textMetric?: string;
customOpenIcon?: IconType;
customCloseIcon?: IconType;
};