smartstring/dist/smartstring.git.d.ts
2016-05-01 21:28:59 +02:00

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;