UNPKG

prodap-chatbot-domain

Version:

Classes utilizadas na resposta de todas as Intents do Assistente Virtual

16 lines (15 loc) 820 B
import { HttpAction } from '../../action'; import { Accordion } from '../../message/accordion'; import { Card } from '../../message/card'; import { Dropdown, FormBasicList, InputPlaces, RadioButton, Switch } from '../../message/form'; import { List } from '../../message/list'; import { Modal } from '../../message/modals'; import { Table } from '../../message/table'; import { Tabs } from '../../message/tabs'; import { Text } from '../../message/text'; import { CollapseType } from './CollapseType'; import { IconType } from './IconType'; import { TextType } from './TextType'; export type CarouselType = { key?: string | number; } & (Accordion | Card | CollapseType | Dropdown | FormBasicList | HttpAction | IconType | InputPlaces | List | Modal | RadioButton | string | Switch | Table | Tabs | TextType | Text);