Inttegro Web SDKs - v0.1.0
    Preparing search index...

    Interface CheckoutHandle

    Imperative operations exposed by Checkout through a React ref.

    Prefer props for normal updates. Use the handle for focus management in dialogs or for updates driven by imperative host integrations.

    interface CheckoutHandle {
        focus(): void;
        update(options: CheckoutUpdateOptions): void;
    }
    Index
    • Moves focus into Checkout when its controller is ready; otherwise does nothing.

      Returns void

    • Applies a new locale or theme when the controller exists.

      Parameters

      • options: CheckoutUpdateOptions

      Returns void