mwg API
    Preparing search index...

    Interface CampaignLevelResult<State, Result>

    interface CampaignLevelResult<
        State extends StateValue,
        Result extends StateValue = StateValue,
    > {
        next?: string | null;
        outcome: CampaignOutcome;
        reminders?: readonly string[];
        result?: Result;
        state: State;
    }

    Type Parameters

    Index
    next?: string | null
    reminders?: readonly string[]
    result?: Result
    state: State