matrix-react-sdk
Version:
SDK for matrix.org using React
15 lines (14 loc) • 478 B
TypeScript
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 {};