UNPKG

botframework-webchat-component

Version:
9 lines 359 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; }; //# sourceMappingURL=WebChatAttachment.d.ts.map