//#region lib/types/host-rules.d.ts interface HostRule { authType?: string; token?: string; username?: string; password?: string; insecureRegistry?: boolean; timeout?: number; abortOnError?: boolean; abortIgnoreStatusCodes?: number[]; enabled?: boolean; enableHttp2?: boolean; concurrentRequestLimit?: number; maxRequestsPerSecond?: number; headers?: Record; maxRetryAfter?: number; keepAlive?: boolean; artifactAuth?: string[] | null; httpsCertificateAuthority?: string; httpsPrivateKey?: string; httpsCertificate?: string; encrypted?: HostRule; hostType?: string; matchHost?: string; resolvedHost?: string; readOnly?: boolean; } type CombinedHostRule = Omit; //#endregion export { CombinedHostRule, HostRule }; //# sourceMappingURL=host-rules.d.ts.map