Hiyve Components - v1.0.0
    Preparing search index...

    Interface MediaDevice

    Represents a media device (camera or microphone) available on the system.

    const devices: MediaDevice[] = [
    { deviceId: 'abc123', label: 'FaceTime HD Camera' },
    { deviceId: 'def456', label: 'USB Webcam' },
    ];
    interface MediaDevice {
        deviceId: string;
        label: string;
    }
    Index

    Properties

    Properties

    deviceId: string

    Unique identifier for the device

    label: string

    Human-readable device name