integrate tsn and clean up
This commit is contained in:
4
dist/test/assets/ts/index.d.ts
vendored
Normal file
4
dist/test/assets/ts/index.d.ts
vendored
Normal file
@ -0,0 +1,4 @@
|
||||
declare let testplugin: {
|
||||
logSomething: () => void;
|
||||
};
|
||||
export = testplugin;
|
7
dist/test/assets/ts/index.js
vendored
Normal file
7
dist/test/assets/ts/index.js
vendored
Normal file
@ -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