2016-03-30 23:26:40 +00:00
|
|
|
/// <reference path="./typings/main.d.ts" />
|
2015-11-11 04:20:06 +00:00
|
|
|
|
2016-03-30 23:26:40 +00:00
|
|
|
import plugins = require("./smartgit.plugins");
|
|
|
|
import SmartgitCheck = require("./smartgit.check");
|
|
|
|
import SmartgitClone = require("./smartgit.clone");
|
|
|
|
import SmartgitCommit = require("./smartgit.commit");
|
|
|
|
import SmartgitInit = require("./smartgit.init");
|
2015-11-11 04:20:06 +00:00
|
|
|
|
2015-11-13 21:58:20 +00:00
|
|
|
var smartgit:any = {};
|
2016-03-30 23:26:40 +00:00
|
|
|
smartgit.clone = SmartgitClone;
|
|
|
|
smartgit.commit = SmartgitCommit;
|
|
|
|
smartgit.check = SmartgitCheck;
|
|
|
|
smartgit.init = SmartgitInit;
|
2015-11-13 21:58:20 +00:00
|
|
|
|
|
|
|
|
2015-11-11 04:20:06 +00:00
|
|
|
module.exports = smartgit;
|