interface Wizard {
    back(): void;
    cancel(): void;
    finish(): void;
    next<T>(stepId: string, properties?: T): void;
    setTitle(title: string): void;
}

Methods

  • Renders the previous wizard step.

    Returns void

  • Cancels the wizard.

    Returns void

  • Finishes the wizard.

    Returns void

  • Renders the next wizard step.

    Type Parameters

    Parameters

    • stepId: string

      The step element ID to render.

    • Optionalproperties: T

      The properties to set on the step element.

    Returns void

  • Sets the title of the wizard header.

    Parameters

    • title: string

      The title.

    Returns void