UNPKG

renovate

Version:

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

6 lines (5 loc) 491 B
import type { RenovateConfig } from './types'; export declare function tryDecrypt(privateKey: string, encryptedStr: string, repository: string, keyName: string): Promise<string | null>; export declare function validateDecryptedValue(decryptedObjStr: string, repository: string): string | null; export declare function decryptConfig(config: RenovateConfig, repository: string, existingPath?: string): Promise<RenovateConfig>; export declare function getAzureCollection(): string | undefined;