Problem Statement
Which utility makes all props optional?
Explanation
Partial turns every property into an optional one. Handy for update DTOs and patch operations.
Code Solution
SolutionRead Only
type User = { id: string; name: string };
type UserUpdate = Partial<User>; // { id?: string; name?: string }