我的消费节点代码如下所示:
var helloworld = require('helloworld');
helloworld.sayhello();
使用Typescript的优点,我如何声明模块导出sayhello()
函数?
答案 0 :(得分:3)
<强> helloworld.ts 强>
export function sayhello() {
console.log('hello, world!');
}
请注意,您不会编写包含module
块(文件本身就是模块)。