</>
Skill
Recall
RECALL WHAT YOU KNOW
Library
Planner
Daily Recall
Why SkillRecall
More
About
News
Contact
Sign in
Explore Library
Create free account
Prepare for an interview
Explore Library
Quiz
Advanced
Save
Utility Type: Omit
Removing specific properties from a type.
What is `Omit<{ a: number; b: string; c: boolean }, "b">`?
A
{ a: number; c: boolean }
B
{ b: string }
C
{ a: number; b: string; c: boolean }
D
"a" | "c"