core-utils
    Preparing search index...
    interface WaitForDeployedAssetsParams {
        checks: readonly DeployedAssetCheck[];
        concurrencyLimit?: number;
        fetchImplementation?: {
            (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
            (input: string | URL | Request, init?: RequestInit): Promise<Response>;
        };
        fetchTimeoutMs?: number;
        nowImplementation?: () => number;
        pollIntervalMs?: number;
        retry?: { delayMs?: number; maxAttempts?: number };
        sleepImplementation?: (params: { durationMs: number }) => Promise<void>;
        stableWindowMs?: number;
        timeoutMs: number;
    }

    Hierarchy (View Summary)

    Index
    checks: readonly DeployedAssetCheck[]
    concurrencyLimit?: number
    fetchImplementation?: {
        (input: URL | RequestInfo, init?: RequestInit): Promise<Response>;
        (input: string | URL | Request, init?: RequestInit): Promise<Response>;
    }

    Type Declaration

      • (input: URL | RequestInfo, init?: RequestInit): Promise<Response>
      • Parameters

        • input: URL | RequestInfo
        • Optionalinit: RequestInit

        Returns Promise<Response>

      • (input: string | URL | Request, init?: RequestInit): Promise<Response>
      • Parameters

        • input: string | URL | Request
        • Optionalinit: RequestInit

        Returns Promise<Response>

    fetchTimeoutMs?: number
    nowImplementation?: () => number
    pollIntervalMs?: number
    retry?: { delayMs?: number; maxAttempts?: number }
    sleepImplementation?: (params: { durationMs: number }) => Promise<void>
    stableWindowMs?: number
    timeoutMs: number