Software Engineering :: Programming :: Languages :: JavaScript :: TypeScript :: Types :: Utility Types
⪼ Made with 💜 by Polyglot.
- TypeScript utility types: Partial and Required
- Typescript Utility Types you must know – Pick, Omit, Partial, Record + BONUS TIP
- TypeScript utility types: Pick and Omit
-
Partial<Type> -
Required<Type> -
Readonly<Type> -
Record<Keys, Type> -
Pick<Type, Keys> -
Omit<Type, Keys> -
Exclude<UnionType, ExcludedMembers> -
Extract<Type, Union> -
NonNullable<Type> -
Parameters<Type> -
ConstructorParameters<Type> -
ReturnType<Type> -
InstanceType<Type> -
ThisParameterType<Type> -
OmitThisParameter<Type> -
ThisType<Type> -
Uppercase<StringType> -
Lowercase<StringType> -
Capitalize<StringType> -
Uncapitalize<StringType>