Enode — API Reference
    Preparing search index...

    Type Alias WizardStep

    type WizardStep = {
        id: string;
        isComplete?: () => boolean;
        onBeforeNext?: () => boolean | Promise<boolean>;
        render: () => ReactNode;
        title: string;
        when?: () => boolean;
    }
    Index

    Properties

    id: string
    isComplete?: () => boolean
    onBeforeNext?: () => boolean | Promise<boolean>
    render: () => ReactNode
    title: string
    when?: () => boolean