1

我的消费节点代码如下所示:

var helloworld = require('helloworld');
helloworld.sayhello();

使用 Typescript 的优点,我将如何声明导出sayhello()函数的模块?

4

1 回答 1

3

helloworld.ts

export function sayhello() {
    console.log('hello, world!');
}

请注意,您不会编写包含module块(文件本身就是模块)。

于 2013-03-19T19:12:57.233 回答