dingxyang/type-challenges

4 - 实现 Pick

Opened this issue · 0 comments

type MyPick<T, K extends keyof T> = { [P in K]: T[P] }