UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

10 lines (9 loc) 465 B
import { ValidConfigOptions } from '../options/options'; import { LogLevel } from './logger'; export declare function getBackportDirPath(): string; export declare function getLogfilePath({ logFilePath, logLevel, }: { logFilePath?: string; logLevel: LogLevel; }): string; export declare function getGlobalConfigPath(globalConfigFile: string | undefined): string; export declare function getRepoPath({ repoOwner, repoName, dir }: ValidConfigOptions): string;