@squidcloud/client
    Preparing search index...

    Interface AiWebVoiceCallSink

    Where the agent's voice plays; an <audio> element does.

    interface AiWebVoiceCallSink {
        autoplay: boolean;
        srcObject: unknown;
        play(): Promise<void>;
    }
    Index
    autoplay: boolean

    Whether playback starts as soon as the stream arrives.

    srcObject: unknown

    The media stream to play.

    • Starts playback.

      Returns Promise<void>