7 lines
179 B
TypeScript
7 lines
179 B
TypeScript
/// <reference path="./typings/index.d.ts" />
|
|
let testplugin = {
|
|
logSomething: function(){
|
|
console.log("only function executed");
|
|
}
|
|
};
|
|
module.exports = testplugin; |