smartgit/ts/smartgit.init.ts

12 lines
322 B
TypeScript
Raw Normal View History

2016-06-12 14:46:59 +00:00
import "typings-global"
2016-03-30 23:59:45 +00:00
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
}
2016-03-30 23:59:45 +00:00
};
}