Type alias Record<K, T>

Record<K, T>: {
    [P in K]: T
}

将 K 中的所有属性值都转换为 T 类型,并返回新的对象类型

Type Parameters

  • K extends keyof any
  • T