TS为数据类型取别名

语法格式:

type 别名 = 数据类型

type myType = number;
let q: myType;
q = 10;
q = "hello";  // 报错:不能将类型“string”分配给类型“number”
type myType = 1 | 2 | 3 | 4 | 5;
let q: myType;
q = 2;
q = 10;  // 报错:不能将类型“10”分配给类型“myType”
q = "hello";  // 报错:不能将类型“"hello"”分配给类型“myType”。

你可能感兴趣的:(TypeScript,开发语言,typescript,javascript,前端)