TypeScript Utility Types
I want to read more about TypeScript Utility types. (https://www.typescriptlang.org/docs/handbook/utility-types.html)
References
Notes
TypeScript offers a variety of utility types to facilitate common type transformations. Here's a summary of some of the key utility types:
Partial<Type>
: Constructs a type with all properties ofType
set to optional, representing all subsets of a given type.Required<Type>
: Constructs a type with all properties ofType
set to required, the opposite ofPartial
.Readonly<Type>
: Constructs a type with all properties ofType
set to readonly, preventing modification of the properties.Record<Keys, Type>
: Constructs a type with a set of propertiesKeys
of typeType
.Pick<Type, Keys>
: Constructs a type by picking a set of propertiesKeys
fromType
.Omit<Type, Keys>
: Constructs a type by omitting a set of propertiesKeys
fromType
.Exclude<UnionType, ExcludedMembers>
: Constructs a type by excluding fromUnionType
all union members that are assignable toExcludedMembers
.Extract<UnionType, ExtractedMembers>
: Constructs a type by extracting fromUnionType
all union members that are assignable toExtractedMembers
.NonNullable<Type>
: Constructs a type by excludingnull
andundefined
fromType
.Parameters<Type>
: Constructs a tuple type from the types used in the parameters of a function typeType
.ConstructorParameters<Type>
: Constructs a tuple or array type from the types used in the parameters of a constructor function typeType
.ReturnType<Type>
: Constructs a type consisting of the return type of functionType
.InstanceType<Type>
: Constructs a type consisting of the instance type of a constructor function typeType
.ThisParameterType<Type>
: Extracts the type of thethis
parameter for a function type, orunknown
if the function type has nothis
parameter.OmitThisParameter<Type>
: Removes thethis
parameter fromType
.ThisType<Type>
: Used to specify the type ofthis
in methods of an object.Awaited<Type>
: Used to model operations likeawait
inasync
functions, recursively unwrappingPromise
s.
Comments
You can read more about how comments are sorted in this blog post.
User Comments
This is the only content on this site so far that was generated by an AI. It was late one night and I wanted to try to keep the daily reading streak alive, so I had this generated (and changed some formatting). I need to learn how to manage TypeScript types better.