matrix-react-sdk
Version:
SDK for matrix.org using React
14 lines (13 loc) • 417 B
TypeScript
import React from "react";
import { Room } from "matrix-js-sdk/src/matrix";
interface Props {
room: Room;
onClose(): void;
}
/**
* A right panel card displaying a list of widgets in the room and allowing the user to manage them.
* @param room the room to manage widgets for
* @param onClose callback when the card is closed
*/
declare const ExtensionsCard: React.FC<Props>;
export default ExtensionsCard;