integrate tsn and clean up
This commit is contained in:
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
declare let testplugin: {
|
||||
logSomething: () => void;
|
||||
};
|
||||
export = testplugin;
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
var testplugin = {
|
||||
logSomething: function () {
|
||||
console.log("only function executed");
|
||||
}
|
||||
};
|
||||
module.exports = testplugin;
|
||||
Reference in New Issue
Block a user