matrix-react-sdk
Version:
SDK for matrix.org using React
21 lines (20 loc) • 536 B
TypeScript
import { FC } from "react";
import { Call } from "../../../models/Call";
export declare enum LiveContentType {
Video = 0
}
interface Props {
type: LiveContentType;
text: string;
active: boolean;
participantCount: number;
}
/**
* Summary line used to call out live, interactive content such as calls.
*/
export declare const LiveContentSummary: FC<Props>;
interface LiveContentSummaryWithCallProps {
call: Call;
}
export declare const LiveContentSummaryWithCall: FC<LiveContentSummaryWithCallProps>;
export {};