mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 00:56:26 +00:00
fb9303c190
Co-authored-by: Rhys Arkins <rhys@arkins.net>
20 lines
469 B
TypeScript
20 lines
469 B
TypeScript
export interface HostRuleSearchResult {
|
|
authType?: string;
|
|
token?: string;
|
|
username?: string;
|
|
password?: string;
|
|
insecureRegistry?: boolean;
|
|
timeout?: number;
|
|
abortOnError?: boolean;
|
|
abortIgnoreStatusCodes?: number[];
|
|
enabled?: boolean;
|
|
enableHttp2?: boolean;
|
|
concurrentRequestLimit?: number;
|
|
}
|
|
|
|
export interface HostRule extends HostRuleSearchResult {
|
|
encrypted?: HostRule;
|
|
hostType?: string;
|
|
matchHost?: string;
|
|
resolvedHost?: string;
|
|
}
|