Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 1.91 KB

File metadata and controls

12 lines (8 loc) · 1.91 KB

Required Keys 困难 #utils

by yituan @yi-tuan

接受挑战    English 日本語

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

例如

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

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

相关挑战

5・获取只读字段