Bootstrap

TypeScript 索引类型

索引类型让静态检查能够覆盖到类型不确定(无法穷举)的”动态“场景

let Obj = {
   
  a: 1,
  b: 2,
  c: 3
};
let getValues = <T, K extends keyof T<
;