matrix-react-sdk
Version:
SDK for matrix.org using React
10 lines (9 loc) • 324 B
TypeScript
import React, { MutableRefObject } from "react";
interface Props {
containerRef: MutableRefObject<HTMLElement | null>;
currentDevice: MediaDeviceInfo | null;
devices: MediaDeviceInfo[];
onDeviceSelect: (device: MediaDeviceInfo) => void;
}
export declare const DevicesContextMenu: React.FC<Props>;
export {};