smartstring/dist/smartstring.git.d.ts
2016-05-01 14:02:48 +02:00

12 lines
327 B
TypeScript

/// <reference path="typings/main.d.ts" />
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;