Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 1.9 KB

File metadata and controls

12 lines (8 loc) · 1.9 KB

必需的键 困难 #utils

by yituan @yi-tuan

接受挑战    English 日本語

实现高级工具类型 RequiredKeys<T>,该类型返回 T 中所有必需属性的键组成的一个联合类型。

例如

type Result = RequiredKeys<{ foo: number; bar?: string }>
// expected to be “foo”

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

相关挑战

5・获取只读属性