@duckduckgo/content-scope-scripts
    Preparing search index...

    Interface StepCompleteParams

    Sent when a user has transitioned from a step to the next one

    interface StepCompleteParams {
        id:
            | "customize"
            | "welcome"
            | "getStarted"
            | "systemSettings"
            | "makeDefaultSingle"
            | "duckPlayerSingle"
            | "addressBarMode";
        next: | "customize"
        | "welcome"
        | "getStarted"
        | "systemSettings"
        | "makeDefaultSingle"
        | "duckPlayerSingle"
        | "addressBarMode"
        | null;
    }
    Index

    Properties

    Properties

    id:
        | "customize"
        | "welcome"
        | "getStarted"
        | "systemSettings"
        | "makeDefaultSingle"
        | "duckPlayerSingle"
        | "addressBarMode"

    a unique identifier for each step

    next:
        | "customize"
        | "welcome"
        | "getStarted"
        | "systemSettings"
        | "makeDefaultSingle"
        | "duckPlayerSingle"
        | "addressBarMode"
        | null

    the step about to display, or null if this is the last step. In practice, always present because stepCompleted is not sent on the last step.