UNPKG

matrix-react-sdk

Version:
10 lines (9 loc) 232 B
import React from "react"; import { Room } from "matrix-js-sdk/src/models/room"; interface IProps { room: Room; widgetId: string; onClose(): void; } declare const WidgetCard: React.FC<IProps>; export default WidgetCard;