12 lines
311 B
TypeScript
12 lines
311 B
TypeScript
|
/// <reference path="./index.ts" />
|
||
|
module SmartgitPlugins {
|
||
|
export var init = function() {
|
||
|
var plugins = {
|
||
|
path: require("path"),
|
||
|
beautylog: require("beautylog"),
|
||
|
nodegit: require("nodegit"),
|
||
|
Q: require("q")
|
||
|
};
|
||
|
return plugins;
|
||
|
}
|
||
|
}
|