mirror of
https://github.com/renovatebot/renovate.git
synced 2025-01-15 09:06:25 +00:00
15 lines
299 B
TypeScript
15 lines
299 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;
|
|
}
|