11 lines
234 B
TypeScript
11 lines
234 B
TypeScript
import "typings-global";
|
|
export declare class GitRepo {
|
|
host: string;
|
|
user: string;
|
|
repo: string;
|
|
accessToken: string;
|
|
sshUrl: string;
|
|
httpsUrl: string;
|
|
constructor(stringArg: string, tokenArg?: string);
|
|
}
|