smartgit/dist/smartgit.clone.d.ts

10 lines
248 B
TypeScript
Raw Normal View History

2016-07-05 01:47:38 +00:00
/// <reference types="q" />
import plugins = require("./smartgit.plugins");
2016-06-28 00:45:37 +00:00
export declare let clone: (optionsArg: {
2016-06-12 14:46:59 +00:00
from: string;
to: string;
key?: string;
2016-06-28 00:45:37 +00:00
keyPath?: string;
keyPassphrase?: string;
2016-07-05 01:47:38 +00:00
}) => plugins.Q.Promise<{}>;