11 lines
284 B
TypeScript
11 lines
284 B
TypeScript
|
export declare class gitRepo {
|
||
|
host: string;
|
||
|
user: string;
|
||
|
repo: string;
|
||
|
accessToken: string;
|
||
|
sshUrl: string;
|
||
|
httpsUrl: string;
|
||
|
constructor(stringArg: string, tokenArg?: string);
|
||
|
}
|
||
|
export declare let git: (stringArg: string, tokenArg?: string) => gitRepo;
|