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

    Type Alias MultiFormatAdConfig

    The ad unit plus the request that describes one multi-format load.

    MultiFormatAdRequest.create and useMultiFormatAd accept this same object, the way AdPools.create and AdPoolProvider share AdPoolConfig. The hook adds autoLoad on top and nothing else.

    requestOptions is nested rather than spread flat so that hook-level fields and request-level fields can never grow into each other: adding a field to MultiFormatAdRequestOptions can never collide with a hook option name. The key is named requestOptions to match AdPoolConfig.requestOptions.

    type MultiFormatAdConfig = {
        adUnitId: string;
        requestOptions: MultiFormatAdRequestOptions;
    }
    Index
    adUnitId: string