AAI SDK
    Preparing search index...

    Type Alias ClientHandle

    Handle returned by client for cleanup.

    Implements Disposable so it can be used with using.

    type ClientHandle = {
        session: SessionCore;
        "[dispose]"(): void;
        dispose(): void;
    }
    Index
    session: SessionCore

    The underlying session core.

    • Alias for dispose for use with using.

      Returns void

    • Unmount the UI and disconnect the session.

      Returns void