UNPKG

backport

Version:

A CLI tool that automates the process of backporting commits

9 lines (8 loc) 228 B
/// <reference types="node" /> import childProcess from 'child_process'; export declare function exec(cmd: string, options: childProcess.ExecOptions & { cwd: string; }): Promise<{ stdout: string; stderr: string; }>;