botframework-webchat-component
Version:
React component of botframework-webchat
9 lines • 359 B
TypeScript
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