questions/00004-easy-pick/README.md
Implement the built-in Pick<T, K> generic without using it.
Constructs a type by picking the set of properties K from T
For example:
interface Todo {
title: string
description: string
completed: boolean
}
type TodoPreview = MyPick<Todo, 'title' | 'completed'>
const todo: TodoPreview = {
title: 'Clean room',
completed: false,
}
<a href="../../README.md" target="_blank"></a> <a href="https://tsch.js.org/4/answer" target="_blank"></a> <a href="https://tsch.js.org/4/solutions" target="_blank"></a> <hr><h3>Related Challenges</h3><a href="https://github.com/type-challenges/type-challenges/blob/main/questions/00003-medium-omit/README.md" target="_blank"></a> <!--info-footer-end-->