UNPKG

renovate

Version:

Automated dependency updates. Flexible so you don't need to be.

11 lines (10 loc) 531 B
import type { RenovateConfig, RepoGlobalConfig } from './types'; export declare class GlobalConfig { private static readonly OPTIONS; private static config; static get(): RepoGlobalConfig; static get<Key extends keyof RepoGlobalConfig>(key: Key): RepoGlobalConfig[Key]; static get<Key extends keyof RepoGlobalConfig>(key: Key, defaultValue: Required<RepoGlobalConfig>[Key]): Required<RepoGlobalConfig>[Key]; static set(config: RenovateConfig | RepoGlobalConfig): RenovateConfig; static reset(): void; }