@playlive/fundraiser-data
    Preparing search index...

    Interface FetchGiftsThatGiveMilestonesParams

    interface FetchGiftsThatGiveMilestonesParams {
        goal:
            | number
            | "100"
            | "500"
            | "1000"
            | "1500"
            | "2000"
            | "3000"
            | "5000"
            | "7500"
            | "10000"
            | "20000"
            | "30000"
            | "40000"
            | "50000"
            | "60000"
            | "70000"
            | "75000"
            | "80000"
            | "90000"
            | "100000";
        signal?: AbortSignal;
    }
    Index
    goal:
        | number
        | "100"
        | "500"
        | "1000"
        | "1500"
        | "2000"
        | "3000"
        | "5000"
        | "7500"
        | "10000"
        | "20000"
        | "30000"
        | "40000"
        | "50000"
        | "60000"
        | "70000"
        | "75000"
        | "80000"
        | "90000"
        | "100000"

    Fundraising goal to evaluate milestones against. Must be one of GIFTS_THAT_GIVE_MILESTONE_GOALS — the server rejects other values.

    Accepts a number for callers that already track goals as scalars; it's stringified before hitting the wire.

    signal?: AbortSignal

    Cancel on React unmount / other lifecycle events.