smartgit/ts/index.ts

11 lines
365 B
TypeScript
Raw Normal View History

2016-03-30 23:59:45 +00:00
import plugins = require("./smartgit.plugins");
2016-07-03 02:37:03 +00:00
export {add} from "./smartgit.add";
2016-07-03 02:03:15 +00:00
export {clone} from "./smartgit.clone";
export {commit} from "./smartgit.commit";
export {init} from "./smartgit.init";
export {pull} from "./smartgit.pull";
export {push} from "./smartgit.push";
2016-07-03 02:37:03 +00:00
export {remote} from "./smartgit.remote";
2016-07-04 01:49:24 +00:00
export {status} from "./smartgit.status";