如何从出口获取类型?

时间:2017-09-21 05:23:07

标签: typescript types

如果我正在导出

baz.ts

String localDate1="Miércoles, 04 Octubre 2017 12:00 PM";

然后我要去做

otherFile.ts

export default {
  foo: 5,
  bar: 'test'
}

我如何获得baz的类型?

2 个答案:

答案 0 :(得分:2)

怎么样

type bazType = typeof baz;

答案 1 :(得分:0)

使用typeof baz,您可以获得baz的类型,如下所示:

type bazType = typeof baz;

Type Queries and typeof in TypeScript中阅读更多内容。