renovate/lib/types/host-rules.ts
Rhys Arkins f00413c298
feat(host-rules): use only matchHost (#9892)
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2021-05-13 20:53:18 +00:00

17 lines
397 B
TypeScript

export interface HostRule {
authType?: string;
hostType?: string;
matchHost?: string;
token?: string;
username?: string;
password?: string;
insecureRegistry?: boolean;
timeout?: number;
encrypted?: HostRule;
abortOnError?: boolean;
abortIgnoreStatusCodes?: number[];
enabled?: boolean;
enableHttp2?: boolean;
concurrentRequestLimit?: number;
resolvedHost?: string;
}