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

ktcotz opened this issue · comments

type MyPick<Type extends object, Keys extends keyof Type> = {
[Property in Keys]:Type[Property]
}