botframework-webchat-component
Version:
React component of botframework-webchat
12 lines • 435 B
TypeScript
import { type WebChatActivity } from 'botframework-webchat-core';
import { type FC } from 'react';
import { type WebChatAttachment } from '../private/types/WebChatAttachment';
type Props = Readonly<{
activity: WebChatActivity;
attachment: WebChatAttachment & {
contentType: `text/${string}`;
};
}>;
declare const TextAttachment: FC<Props>;
export default TextAttachment;
//# sourceMappingURL=TextAttachment.d.ts.map