matrix-react-sdk
Version:
SDK for matrix.org using React
16 lines (15 loc) • 450 B
TypeScript
import { FC, AriaRole } from "react";
import type { Room } from "matrix-js-sdk/src/matrix";
interface CallViewProps {
room: Room;
resizing: boolean;
/**
* If true, the view will be blank until a call appears. Otherwise, the join
* button will create a call if there isn't already one.
*/
waitForCall: boolean;
skipLobby?: boolean;
role?: AriaRole;
}
export declare const CallView: FC<CallViewProps>;
export {};