2016-05-25 03:06:19 +00:00
|
|
|
import "typings-global";
|
|
|
|
export declare class GitRepo {
|
2016-05-01 12:02:48 +00:00
|
|
|
host: string;
|
|
|
|
user: string;
|
|
|
|
repo: string;
|
|
|
|
accessToken: string;
|
|
|
|
sshUrl: string;
|
|
|
|
httpsUrl: string;
|
|
|
|
constructor(stringArg: string, tokenArg?: string);
|
|
|
|
}
|