前言
字符串子面量类型用来约束取值只能是某几个字符串中的一个.
示例
type Info = 'age' | 'sex' | 'length';function Handle(a: string, b: Info ) {console.log(a, b);}---------------------------------------------------Handle('hello', 'age'); //hello ageHandle('hello', '18'); //Argument of type '"18"' is not assignable to parameter of type 'Info'.结论:取值只能取定义的字符串中取。
