UNPKG

renovate

Version:

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

16 lines (15 loc) 627 B
import type { RenovateConfig } from '../../../config/types'; import type { BranchStatus } from '../../../types'; export declare function getReconfigureBranchName(prefix: string): string; export declare function setBranchStatus(branchName: string, description: string, state: BranchStatus, context?: string | null): Promise<void>; type GetReconfigureConfigResult = { ok: true; config: RenovateConfig; configFileName: string; } | { ok: false; errMessage: string; configFileName?: string; }; export declare function getReconfigureConfig(branchName: string): Promise<GetReconfigureConfigResult>; export {};