renovate/lib/types/host-rules.ts

17 lines
323 B
TypeScript
Raw Normal View History

export interface HostRule {
endpoint?: string;
host?: string;
hostType?: string;
domainName?: string;
hostName?: string;
json?: true;
baseUrl?: string;
token?: string;
username?: string;
password?: string;
insecureRegistry?: boolean;
platform?: string;
timeout?: number;
2020-04-29 12:27:18 +00:00
encrypted?: HostRule;
}