smartgit/dist/smartgit.remote.d.ts

8 lines
319 B
TypeScript
Raw Permalink Normal View History

2016-07-05 01:47:38 +00:00
/// <reference types="q" />
import * as plugins from "./smartgit.plugins";
2016-07-03 02:37:03 +00:00
export declare let remote: {
2016-07-05 01:47:38 +00:00
add: (dirPathArg: any, remoteNameArg: string, remoteLinkArg: string) => plugins.Q.Promise<{}>;
list: (dirPathArg: any) => plugins.Q.Promise<{}>;
remove: (dirPathArg: string) => plugins.Q.Promise<{}>;
2016-07-03 02:37:03 +00:00
};