smartgit/ts/smartgit.check.ts

9 lines
191 B
TypeScript
Raw Normal View History

2016-01-18 03:20:37 +00:00
/// <reference path="./index.ts" />
module SmartgitCheck {
export var init = function(){
var check = function() {
return true;
};
return check;
}
}