UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

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