UNPKG

matrix-react-sdk

Version:
15 lines (14 loc) 478 B
import React from "react"; import { MatrixCall } from "matrix-js-sdk/src/webrtc/call"; import { IProps as IContextMenuProps } from "../../structures/ContextMenu"; interface IProps extends IContextMenuProps { call: MatrixCall; } export default class LegacyCallContextMenu extends React.Component<IProps> { constructor(props: IProps); onHoldClick: () => void; onUnholdClick: () => void; onTransferClick: () => void; render(): React.ReactNode; } export {};