smartstring/dist/smartstring.git.d.ts

10 lines
209 B
TypeScript
Raw Normal View History

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