botframework-webchat-component
Version:
React component of botframework-webchat
16 lines • 542 B
TypeScript
import { VFC } from 'react';
type SuggestedActionProps = {
buttonText: string;
className?: string;
displayText?: string;
image?: string;
imageAlt?: string;
itemIndex: number;
text?: string;
textClassName?: string;
type?: 'call' | 'downloadFile' | 'imBack' | 'messageBack' | 'openUrl' | 'playAudio' | 'playVideo' | 'postBack' | 'showImage' | 'signin';
value?: any;
};
declare const SuggestedAction: VFC<SuggestedActionProps>;
export default SuggestedAction;
//# sourceMappingURL=SuggestedAction.d.ts.map