renovate/lib/types/host-rules.ts
2020-04-29 14:27:18 +02:00

16 lines
323 B
TypeScript

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;
encrypted?: HostRule;
}