projectinfo/dist/projectinfo.classes.git.d.ts

17 lines
357 B
TypeScript
Raw Normal View History

2016-11-26 13:45:56 +00:00
export declare class ProjectinfoGit {
isGit: boolean;
2016-11-26 22:18:33 +00:00
githost: string;
gituser: string;
gitrepo: string;
cwd: string;
constructor(cwdArg: string);
/**
* get git info from path
*/
getGitInfoFromPath(): void;
/**
* get git info from remote url
*/
getGitInfoFromRemote(remoteUrlArg: string): void;
2016-11-26 13:45:56 +00:00
}