core-utils
    Preparing search index...
    interface DeployedAssetCheck {
        cacheMode?: DeployedAssetCacheMode;
        expectedContentTypes?: readonly string[];
        headers?: Record<string, string>;
        method?: DeployedAssetRequestMethod;
        path: string;
        url: string;
        validateResponse?: (
            params: { response: Response },
        ) => DeployedAssetValidationResult | Promise<DeployedAssetValidationResult>;
    }
    Index
    expectedContentTypes?: readonly string[]
    headers?: Record<string, string>
    path: string
    url: string
    validateResponse?: (
        params: { response: Response },
    ) => DeployedAssetValidationResult | Promise<DeployedAssetValidationResult>