smartgit/ts/smartgit.init.ts
2016-07-02 02:36:33 +02:00

11 lines
298 B
TypeScript

import plugins = require("./smartgit.plugins");
export = function(){
var gitinit = function(dest:string = "undefined") {
if (dest == "undefined") { //lets check if a destination is defined...
return; // ...and return function here if not
}
};
}