Transcript
00:00 Alright. Welcome to the utility types exercise. Very excited about this one. TypeScript has tons of types that are built in, like generic types that you can use to do all kinds of things with your types. It's basically a library of types that is, built into TypeScript and it's super useful.
00:18 And in this exercise, we're going to be teaching you about some of the most common ones and even showing you how to build some of your own. So, here's an example. We've got this event. We're gonna make a partial version of the event. We're gonna pick certain properties.
00:31 We're gonna omit certain properties, and, all of these are generics. We also have some types that are specifically for functions and things like that. It's gonna be really cool. You're gonna really enjoy this. So, yeah, here are a bunch of different, types that we use all the time, some utility types for unions and for functions.
00:49 We're gonna get into all of these things, including how to write your own. It's gonna be a lot of fun. So let's get right into it.
