smartstring/dist/smartstring.git.d.ts

11 lines
234 B
TypeScript
Raw Normal View History

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);
}