matrix-react-sdk
Version:
SDK for matrix.org using React
12 lines (11 loc) • 393 B
TypeScript
import React from "react";
import IconizedContextMenu from "./IconizedContextMenu";
import { IApp } from "../../../stores/WidgetStore";
interface IProps extends React.ComponentProps<typeof IconizedContextMenu> {
app: IApp;
userWidget?: boolean;
showUnpin?: boolean;
onDeleteClick?(): void;
}
declare const WidgetContextMenu: React.FC<IProps>;
export default WidgetContextMenu;