@codefresh-io/cf-git-providers
Version:
An NPM module/CLI for interacting with various git providers
13 lines • 427 B
TypeScript
import { Argv, Arguments } from 'yargs';
export declare const command = "branch";
export declare const aliases: string[];
export declare const desc = "Get branch details from a git repository";
export declare const builder: (yargs: Argv) => Argv<{
owner: string;
} & {
repo: string;
} & {
branch: string;
}>;
export declare const handler: (argv: Arguments) => Promise<void>;
//# sourceMappingURL=branch.cmd.d.ts.map