@botpress/webchat-client
Version:
25 lines (23 loc) • 836 B
text/typescript
import type { Custom } from './custom'
import type { MessageCreated } from './messageCreated'
import type { MessageUpdated } from './messageUpdated'
import type { TypingStarted } from './typingStarted'
import type { TypingStopped } from './typingStopped'
import type { WebchatConfig } from './webchatConfig'
import type { WebchatVisibility } from './webchatVisibility'
import type { ParticipantAdded } from './participantAdded'
import type { ParticipantRemoved } from './participantRemoved'
import type { MessageStatusChanged } from './messageStatusChanged'
import type { Initialize } from './initialize'
export type Signal =
| MessageCreated
| MessageUpdated
| WebchatVisibility
| WebchatConfig
| Custom
| TypingStarted
| TypingStopped
| ParticipantAdded
| ParticipantRemoved
| MessageStatusChanged
| Initialize