7 lines
179 B
TypeScript
Raw Normal View History

2016-05-19 22:11:18 +02:00
/// <reference path="./typings/index.d.ts" />
2016-03-30 01:32:41 +02:00
let testplugin = {
2016-02-09 05:39:31 +01:00
logSomething: function(){
console.log("only function executed");
}
};
module.exports = testplugin;