botframework-webchat-component
Version:
React component of botframework-webchat
12 lines • 497 B
TypeScript
import React from 'react';
type Props = Readonly<{
identifier?: string;
text?: string;
badgeName?: string;
badgeTitle?: string;
url?: string;
onClick?: (event: Pick<CustomEvent, 'defaultPrevented' | 'preventDefault' | 'type'>) => void;
}>;
declare const LinkDefinitionItem: React.MemoExoticComponent<({ badgeName, badgeTitle, identifier, onClick, text, url }: Props) => React.JSX.Element>;
export default LinkDefinitionItem;
//# sourceMappingURL=LinkDefinitionItem.d.ts.map