tap-sdk-js
    Preparing search index...

    Type Alias ZakoTapClientHandle

    Represents a handle to the Zako Tap client.

    This object provides methods and event handling capabilities for interacting with the Zako Tap system.

    type ZakoTapClientHandle = {
        connect: () => void;
        events: EventEmitter<TapEvents, any>;
    }
    Index

    Properties

    Properties

    connect: () => void

    Establishes a connection to the Zako Tap server.

    This method should be called before attempting any communication

    events: EventEmitter<TapEvents, any>

    An event emitter used for subscribing to and emitting internal events.

    @seeTapEvents