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

    Variable permissionsConst

    permissions: (
        options: {
            appId: string;
            country?: string;
            lang?: string;
            onDegradation?: OnDegradation;
            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;
            };
            short?: boolean;
            throttle?: number;
        },
    ) => Promise<string[] | { permission: string; type: 0 | 1 }[]> = ...

    Type Declaration

      • (
            options: {
                appId: string;
                country?: string;
                lang?: string;
                onDegradation?: OnDegradation;
                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;
                };
                short?: boolean;
                throttle?: number;
            },
        ): Promise<string[] | { permission: string; type: 0 | 1 }[]>
      • Parameters

        • options: {
              appId: string;
              country?: string;
              lang?: string;
              onDegradation?: OnDegradation;
              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;
              };
              short?: boolean;
              throttle?: number;
          }

        Returns Promise<string[] | { permission: string; type: 0 | 1 }[]>