Skip to content
Snippets Groups Projects
Unverified Commit 07d278b2 authored by Michael Kriese's avatar Michael Kriese Committed by GitHub
Browse files

refactor: add missing type (#16251)

parent cbf39e7c
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ import is from '@sindresorhus/is';
import { load } from 'js-yaml';
import { logger } from '../../../logger';
import { cache } from '../../../util/cache/package/decorator';
import type { HttpResponse } from '../../../util/http/types';
import { ensureTrailingSlash } from '../../../util/url';
import * as helmVersioning from '../../versioning/helm';
import { Datasource } from '../datasource';
......@@ -34,7 +35,7 @@ export class HelmDatasource extends Datasource {
async getRepositoryData(
helmRepository: string
): Promise<HelmRepositoryData | null> {
let res: any;
let res: HttpResponse<string>;
try {
res = await this.http.get('index.yaml', {
baseUrl: ensureTrailingSlash(helmRepository),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment