我知道TypeScript documentation并非完全是最新的,因为未提及type
和abstract
关键字。例如,以下内容现在是有效的TypeScript:
interface A {
b: string;
}
// I can't see anywhere in documentation this is mentioned.
type C = A;
var d: C;
d.b = 'something';
除了解析源代码或阅读有关GitHub问题的所有最新更改之外,还有更好的地方获取最新文档吗?
答案 0 :(得分:1)
它被称为类型别名,以使您的代码更具可读性,您可以像这样使用它:
type PrimitiveArray = Array<string|number|boolean>;
type MyNumber = number;
type NgScope = ng.IScope;
type Callback = () => void;
答案 1 :(得分:1)