tap-sdk-js
    Preparing search index...

    Type Alias TapEvents

    Represents all events of Tap Client.

    type TapEvents = {
        connectionError: (e: Error) => any;
        error: (e: Error) => any;
        ready: () => any;
        request: (handle: AudioRequestHandle) => any;
    }
    Index

    Properties

    connectionError: (e: Error) => any

    Event called on initial connection error.

    error: (e: Error) => any

    Event called on error during process.

    ready: () => any

    Event called on connection ready.

    request: (handle: AudioRequestHandle) => any

    Event called on audio request. You should handle this.

    @seeAudioRequestHandle