我的消费节点代码如下所示:
var helloworld = require('helloworld');
helloworld.sayhello();
使用 Typescript 的优点,我将如何声明导出sayhello()
函数的模块?
我的消费节点代码如下所示:
var helloworld = require('helloworld');
helloworld.sayhello();
使用 Typescript 的优点,我将如何声明导出sayhello()
函数的模块?