← Code LabTypeScript0/50 solved · 0%
Utility Types · medium

31. Omit Utility

Remove properties from a type.

Use `Omit` to create `PublicUser` without `password`.
Required in your answer: Omit<User, 'password'>