UNPKG

matrix-react-sdk

Version:
13 lines (12 loc) 363 B
import React from "react"; import { MatrixCall } from "matrix-js-sdk/src/webrtc/call"; import { CallFeed } from "matrix-js-sdk/src/webrtc/callFeed"; interface IProps { feeds: Array<CallFeed>; call: MatrixCall; pipMode: boolean; } export default class LegacyCallViewSidebar extends React.Component<IProps> { render(): React.ReactNode; } export {};