@mathjax/src
    Preparing search index...

    A11y explorers.

    interface Explorer {
        active: boolean;
        pool: ExplorerPool;
        stoppable: boolean;
        AddEvents(): void;
        Attach(): void;
        Detach(): void;
        RemoveEvents(): void;
        Start(): void;
        Stop(): void;
        Update(force?: boolean): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Properties

    active: boolean

    Flag indicating if the explorer is active.

    The pool the explorer belongs to.

    stoppable: boolean

    Flag indicating if event bubbling is stopped.

    Methods

    • Update the explorer after state changes.

      Parameters

      • Optionalforce: boolean

        Forces the update in any case. (E.g., even if explorer is inactive.)

      Returns void