UNPKG

@heroku-cli/command

Version:
15 lines (14 loc) 376 B
export interface IGitRemote { name: string; url: string; } export declare class Git { get remotes(): IGitRemote[]; exec(cmd: string): string; } export declare function configRemote(): string | undefined; export interface IGitRemotes { app: string; remote: string; } export declare function getGitRemotes(onlyRemote: string | undefined): IGitRemotes[];