backport
Version:
A CLI tool that automates the process of backporting commits
5 lines (4 loc) • 403 B
TypeScript
import { ConfigFileOptions } from '../ConfigOptions';
export declare function getGlobalConfig(globalConfigFile?: string): Promise<ConfigFileOptions>;
export declare function createGlobalConfigAndFolderIfNotExist(globalConfigPath: string): Promise<boolean | undefined>;
export declare function createGlobalConfigIfNotExist(globalConfigPath: string, configTemplate: string): Promise<boolean | undefined>;