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