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

    Interface ScheduleBlockRaisedByCurrency

    Per-currency slice returned inside ScheduleBlockRaised.byCurrency.

    Deliberately identical to PipelineDonationSumByCurrency in @playlive/react-pipeline so overlays can trivially combine a REST baseline row with a WS-delta row without shape juggling. The two types are re-declared independently to keep @playlive/fundraiser-data from picking up a runtime dep on react-pipeline.

    interface ScheduleBlockRaisedByCurrency {
        currency: string;
        donationCount: number;
        raised: number;
    }
    Index
    currency: string
    donationCount: number
    raised: number