type-challenges / type-challenges

Collection of TypeScript type challenges with online judge

Home Page:https://tsch.js.org/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

4 - Pick

brown2243 opened this issue · comments

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