UNPKG

matrix-react-sdk

Version:
10 lines (9 loc) 324 B
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 {};