Skip to content

Latest commit

 

History

History
20 lines (13 loc) · 1.68 KB

File metadata and controls

20 lines (13 loc) · 1.68 KB

RequiredByKeys 中等 #object

by jiangshan @jiangshanmeta

接受挑战    English

实现一个通用的RequiredByKeys<T, K>,它接收两个类型参数TK

K指定应设为必选的T的属性集。当没有提供K时,它就和普通的Required<T>一样使所有的属性成为必选的。

例如:

interface User {
  name?: string
  age?: number
  address?: string
}

type UserRequiredName = RequiredByKeys<User, 'name'> // { name: string; age?: number; address?: string }

返回首页 分享你的解答 查看解答