12 lines
322 B
TypeScript
12 lines
322 B
TypeScript
import "typings-global"
|
|
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
|
|
}
|
|
|
|
|
|
};
|
|
} |