mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
f00413c298
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
17 lines
397 B
TypeScript
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;
|
|
}
|