UNPKG

matrix-react-sdk

Version:
11 lines (10 loc) 291 B
import React from "react"; import { MatrixEvent } from "matrix-js-sdk/src/matrix"; interface IProps { links: string[]; mxEvent: MatrixEvent; onCancelClick(): void; onHeightChanged?(): void; } declare const LinkPreviewGroup: React.FC<IProps>; export default LinkPreviewGroup;