react-native-google-mobile-ads
    Preparing search index...

    Type Alias MultiFormatLoadResult

    MultiFormatLoadResult: MultiFormatLoadResultBase & (
        | { ads: MultiFormatAdHandle[]; errors: never[]; status: "loaded" }
        | {
            ads: MultiFormatAdHandle[];
            errors: AdError[];
            status: "loaded-partial";
        }
        | { ads: never[]; errors: never[]; status: "no-fill" }
        | { ads: never[]; errors: AdError[]; status: "error" }
    )

    Outcome of one multi-format load, discriminated on status.

    The status values are the terminal subset of UseMultiFormatAdStatus, so a hook consumer and a caller awaiting load() branch on the same words.

    A load never resolves stale-by-policy. This library performed the load and returns the handles straight out of its own completion callback, so the observed time starts at hand-off. That is a provenance fact, not a guarantee inherited from PollResult.