react-sip-kit
Version:
A modern **React SIP.js toolkit** for building web softphones and SIP clients. Supports **audio/video calls**, **call recording**, **screen sharing**, and **device management**, all with a clean, extensible, TypeScript-first architecture.
10 lines (9 loc) • 364 B
TypeScript
import { SipAccountConfig } from '../../configs/types';
export declare const getMediaDevices: (username: SipAccountConfig["username"]) => Promise<{
hasAudioDevice: boolean;
audioInputDevices: MediaDeviceInfo[];
hasSpeakerDevice: boolean;
speakerDevices: MediaDeviceInfo[];
hasVideoDevice: boolean;
videoInputDevices: MediaDeviceInfo[];
}>;