smartstring/dist/smartstring.git.d.ts

11 lines
284 B
TypeScript
Raw Normal View History

2016-05-01 12:02:48 +00:00
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;