Oct 26, 2023
TypeScript Tricks I Love
1 min read
#typescript#frontend#coding
TypeScript has a few utility types that I find myself using in almost every project. Partial and Pick Sometimes you only want a subset of a type. typescript interface User { id: string; name: ...