@openvanilla/mcfoximmweb
    Preparing search index...

    UI adapter used by InputController.

    Implementations receive composition updates, commit text to the host environment, and clear any visible input-method UI when the state resets.

    interface InputUI {
        commitString(text: string): void;
        reset(): void;
        update(state: string): void;
    }
    Index

    Methods

    • Commits text to the host application.

      Parameters

      • text: string

        The text to commit.

      Returns void

    • Updates the visible composition and candidate UI state.

      Parameters

      • state: string

        Serialized UI state produced by InputUIStateBuilder.

      Returns void