UNPKG

botframework-webchat-component

Version:
11 lines (8 loc) 309 B
import { WebChatActivity } from 'botframework-webchat-core'; import { type TypeOfArray } from '../../../types/internal/TypeOfArray'; export type WebChatAttachment = TypeOfArray< Exclude<(WebChatActivity & { type: 'message' })['attachments'], undefined> > & { content?: string; contentType: string; };