keyof和typeof关键字作用? keyof 索引类型查询操作符, 获取索引类型属性名, 构成联合类型 typeof 获取一个变量或者对象的类型 let str:string = ‘hello’ // typeof str =>:string keyof typeof 获取 联合类型的key enum A{A, B, C }type unionType = keyof typeof A; // 'A'|'B'|'C'