interface WizardStepChange {
    stepId: string;
    type: "back" | "next";
}

Properties

Properties

stepId: string

The ID of the step element to be rendered.

type: "back" | "next"

Whether the wizard step change was triggered by a next() or a back().