Omit medium #union #built-in

by Anthony Fu @antfu

Take the Challenge    简体中文 日本語 한국어 Português (BR)

Implement the built-in `Omit` generic without using it. Constructs a type by picking all properties from `T` and then removing `K` For example ```ts interface Todo { title: string description: string completed: boolean } type TodoPreview = MyOmit const todo: TodoPreview = { completed: false, } ```
Back Share your Solutions Check out Solutions

Related Challenges

4・Pick