有没有办法在TypeScript中定义类似的内容?
interface A {
x: string | number;
}
我希望界面A
有一个名为x
的成员字段,可以是string
或number
。
答案 0 :(得分:3)
不在当前发布的版本中。您现在需要使用任何。但是在下一个版本中,支持具有完全相同语法的Union类型
更多:http://blogs.msdn.com/b/typescript/archive/2014/11/18/what-s-new-in-the-typescript-type-system.aspx