@mradex77/google-play-scraper - v1.0.0
    Preparing search index...

    Variable searchIteratorConst

    searchIterator: (
        options: {
            country?: string;
            lang?: string;
            onDegradation?: OnDegradation;
            price?: "free" | "all" | "paid";
            requestOptions?: {
                fetchImpl?: (
                    input: string | URL | Request,
                    init?: RequestInit,
                ) => Promise<Response>;
                headers?: Record<string, string>;
                onRequest?: OnRequest;
                onResponse?: OnResponse;
                onRetry?: OnRetry;
                retries?: number;
                signal?: AbortSignal;
                timeoutMs?: number;
            };
            term: string;
            throttle?: number;
        },
    ) => AsyncGenerator<
        {
            appId: string;
            currency?: string;
            developer: string;
            developerId?: string;
            free: boolean;
            icon: string;
            price: number;
            score?: number;
            scoreText?: string;
            summary?: string;
            title: string;
            url: string;
        },
        void,
        undefined,
    > = ...

    Type Declaration

      • (
            options: {
                country?: string;
                lang?: string;
                onDegradation?: OnDegradation;
                price?: "free" | "all" | "paid";
                requestOptions?: {
                    fetchImpl?: (
                        input: string | URL | Request,
                        init?: RequestInit,
                    ) => Promise<Response>;
                    headers?: Record<string, string>;
                    onRequest?: OnRequest;
                    onResponse?: OnResponse;
                    onRetry?: OnRetry;
                    retries?: number;
                    signal?: AbortSignal;
                    timeoutMs?: number;
                };
                term: string;
                throttle?: number;
            },
        ): AsyncGenerator<
            {
                appId: string;
                currency?: string;
                developer: string;
                developerId?: string;
                free: boolean;
                icon: string;
                price: number;
                score?: number;
                scoreText?: string;
                summary?: string;
                title: string;
                url: string;
            },
            void,
            undefined,
        >
      • Parameters

        • options: {
              country?: string;
              lang?: string;
              onDegradation?: OnDegradation;
              price?: "free" | "all" | "paid";
              requestOptions?: {
                  fetchImpl?: (
                      input: string | URL | Request,
                      init?: RequestInit,
                  ) => Promise<Response>;
                  headers?: Record<string, string>;
                  onRequest?: OnRequest;
                  onResponse?: OnResponse;
                  onRetry?: OnRetry;
                  retries?: number;
                  signal?: AbortSignal;
                  timeoutMs?: number;
              };
              term: string;
              throttle?: number;
          }

        Returns AsyncGenerator<
            {
                appId: string;
                currency?: string;
                developer: string;
                developerId?: string;
                free: boolean;
                icon: string;
                price: number;
                score?: number;
                scoreText?: string;
                summary?: string;
                title: string;
                url: string;
            },
            void,
            undefined,
        >