TypeScript provides several utility types to facilitate common type transformations. These utilities are available globally.
Partial<Type>
Constructs a type with all properties of Type
set to optional. This utility will return a type that represents all subsets of a given type.
Example
tsinterface
TryTodo {title : string;description : string; } functionupdateTodo (todo :Todo ,fieldsToUpdate :Partial <Todo >) { return { ...todo , ...fieldsToUpdate }; } consttodo1 = {title : "organize desk",description : "clear clutter" }; consttodo2 =updateTodo (todo1 , {description : "throw out trash" });
Readonly<Type>
Constructs a type with all properties of Type
set to readonly
, meaning the properties of the constructed type cannot be reassigned.
Example
tsinterface
TryTodo {title : string; } consttodo :Readonly <Todo > = {title : "Delete inactive users" };todo . "Hello"; Cannot assign to 'title' because it is a read-only property.2540Cannot assign to 'title' because it is a read-only property.title =
This utility is useful for representing assignment expressions that will fail at runtime (i.e. when attempting to reassign properties of a frozen object).
Object.freeze
tsfunction freeze<Type>(obj: Type): Readonly<Type>;
Record<Keys,Type>
Constructs a type with a set of properties Keys
of type Type
. This utility can be used to map the properties of a type to another type.
Example
tsinterface
TryPageInfo {title : string; } typePage = "home" | "about" | "contact"; constnav :Record <Page ,PageInfo > = {about : {title : "about" },contact : {title : "contact" },home : {title : "home" } };nav .about // ^ = Could not get LSP result: bou>t< //
Pick<Type, Keys>
Constructs a type by picking the set of properties Keys
from Type
.
Example
tsinterface
TryTodo {title : string;description : string;completed : boolean; } typeTodoPreview =Pick <Todo , "title" | "completed">; consttodo :TodoPreview = {title : "Clean room",completed : false };todo // ^ = const todo: Pick
Omit<Type, Keys>
Constructs a type by picking all properties from Type
and then removing Keys
.
Example
tsinterface
TryTodo {title : string;description : string;completed : boolean; } typeTodoPreview =Omit <Todo , "description">; consttodo :TodoPreview = {title : "Clean room",completed : false };todo // ^ = const todo: Pick
Exclude<Type, ExcludedUnion>
Constructs a type by excluding from Type
all union members that are assignable to ExcludedUnion
.
Example
tstype
TryT0 =Exclude <"a" | "b" | "c", "a">; // ^ = type T0 = "b" | "c" typeT1 =Exclude <"a" | "b" | "c", "a" | "b">; // ^ = type T1 = "c" typeT2 =Exclude <string | number | (() => void),Function >; // ^ = type T2 = string | number
Extract<Type, Union>
Constructs a type by extracting from Type
all all union members that are assignable to Union
.
Example
tstype
TryT0 =Extract <"a" | "b" | "c", "a" | "f">; // ^ = type T0 = "a" typeT1 =Extract <string | number | (() => void),Function >; // ^ = type T1 = () => void
NonNullable<Type>
Constructs a type by excluding null
and undefined
from Type
.
Example
tstype
TryT0 =NonNullable <string | number | undefined>; // ^ = type T0 = string | number typeT1 =NonNullable <string[] | null | undefined>; // ^ = type T1 = string[]
Parameters<Type>
Constructs a tuple type from the types used in the parameters of a function type Type
.
Example
tsdeclare function
Tryf1 (arg : {a : number;b : string }): void; typeT0 =Parameters <() => string>; // ^ = type T0 = [] typeT1 =Parameters <(s : string) => void>; // ^ = type T1 = [s: string] typeT2 =Parameters <<T >(arg :T ) =>T >; // ^ = type T2 = [arg: unknown] typeT3 =Parameters <typeoff1 >; // ^ = type T3 = [arg: { a: number; b: string; }] typeT4 =Parameters <any>; // ^ = type T4 = unknown[] typeT5 =Parameters <never>; // ^ = type T5 = never typeType 'string' does not satisfy the constraint '(...args: any) => any'.2344Type 'string' does not satisfy the constraint '(...args: any) => any'.// ^ = type T6 = never type T6 =Parameters <string>;Type 'Function' does not satisfy the constraint '(...args: any) => any'. Type 'Function' provides no match for the signature '(...args: any): any'.2344Type 'Function' does not satisfy the constraint '(...args: any) => any'. Type 'Function' provides no match for the signature '(...args: any): any'.// ^ = type T7 = never T7 =Parameters <Function >;
ConstructorParameters<Type>
Constructs a tuple or array type from the types of a constructor function type. It produces a tuple type with all the parameter types (or the type never
if Type
is not a function).
Example
tstype
TryT0 =ConstructorParameters <ErrorConstructor >; // ^ = type T0 = [message?: string] typeT1 =ConstructorParameters <FunctionConstructor >; // ^ = type T1 = string[] typeT2 =ConstructorParameters <RegExpConstructor >; // ^ = type T2 = [pattern: string | RegExp, flags?: string] typeT3 =ConstructorParameters <any> // ^ = type T3 = unknown[] typeType 'Function' does not satisfy the constraint 'new (...args: any) => any'. Type 'Function' provides no match for the signature 'new (...args: any): any'.2344Type 'Function' does not satisfy the constraint 'new (...args: any) => any'. Type 'Function' provides no match for the signature 'new (...args: any): any'.// ^ = type T4 = never T4 =ConstructorParameters <Function >
ReturnType<Type>
Constructs a type consisting of the return type of function Type
.
Example
tsdeclare function
Tryf1 (): {a : number;b : string }; typeT0 =ReturnType <() => string>; // ^ = type T0 = string typeT1 =ReturnType <(s : string) => void>; // ^ = type T1 = void typeT2 =ReturnType <<T >() =>T >; // ^ = type T2 = unknown typeT3 =ReturnType <<T extendsU ,U extends number[]>() =>T >; // ^ = type T3 = number[] typeT4 =ReturnType <typeoff1 >; // ^ = type T4 = { a: number; b: string; } typeT5 =ReturnType <any>; // ^ = type T5 = any typeT6 =ReturnType <never>; // ^ = type T6 = never typeType 'string' does not satisfy the constraint '(...args: any) => any'.2344Type 'string' does not satisfy the constraint '(...args: any) => any'.// ^ = type T7 = any type T7 =ReturnType <string>;Type 'Function' does not satisfy the constraint '(...args: any) => any'. Type 'Function' provides no match for the signature '(...args: any): any'.2344Type 'Function' does not satisfy the constraint '(...args: any) => any'. Type 'Function' provides no match for the signature '(...args: any): any'.// ^ = type T8 = any T8 =ReturnType <Function >;
InstanceType<Type>
Constructs a type consisting of the instance type of a constructor function in Type
.
Example
tsclass
TryC {x = 0;y = 0; } typeT0 =InstanceType <typeofC >; // ^ = type T0 = C typeT1 =InstanceType <any>; // ^ = type T1 = any typeT2 =InstanceType <never>; // ^ = type T2 = never typeType 'string' does not satisfy the constraint 'new (...args: any) => any'.2344Type 'string' does not satisfy the constraint 'new (...args: any) => any'.// ^ = type T3 = any type T3 =InstanceType <string>;Type 'Function' does not satisfy the constraint 'new (...args: any) => any'. Type 'Function' provides no match for the signature 'new (...args: any): any'.2344Type 'Function' does not satisfy the constraint 'new (...args: any) => any'. Type 'Function' provides no match for the signature 'new (...args: any): any'.// ^ = type T4 = any T4 =InstanceType <Function >;
Required<Type>
Constructs a type consisting of all properties of T
set to required. The opposite of Partial
.
Example
tsinterface
TryProps {a ?: number;b ?: string; } constobj :Props = {a : 5 }; const: obj2 Required <Props > = {a : 5 }; Property 'b' is missing in type '{ a: number; }' but required in type 'Required<Props>'.2741Property 'b' is missing in type '{ a: number; }' but required in type 'Required<Props>'.
ThisParameterType<Type>
Extracts the type of the this parameter for a function type, or unknown if the function type has no this
parameter.
Example
tsfunction
TrytoHex (this :Number ) { return this.toString (16); } functionnumberToString (n :ThisParameterType <typeoftoHex >) { returntoHex .apply (n ); }
OmitThisParameter<Type>
Removes the this
parameter from Type
. If Type
has no explicitly declared this
parameter, the result is simply Type
. Otherwise, a new function type with no this
parameter is created from Type
. Generics are erased and only the last overload signature is propagated into the new function type.
Example
tsfunction
TrytoHex (this :Number ) { return this.toString (16); } constfiveToHex :OmitThisParameter <typeoftoHex > =toHex .bind (5);console .log (fiveToHex ());
ThisType<Type>
This utility does not return a transformed type. Instead, it serves as a marker for a contextual this
type. Note that the --noImplicitThis
flag must be enabled to use this utility.
Example
tstype
TryObjectDescriptor <D ,M > = {data ?:D ;methods ?:M &ThisType <D &M >; // Type of 'this' in methods is D & M }; functionmakeObject <D ,M >(desc :ObjectDescriptor <D ,M >):D &M { letdata : object =desc .data || {}; letmethods : object =desc .methods || {}; return { ...data , ...methods } asD &M ; } letobj =makeObject ({data : {x : 0,y : 0 },methods : {moveBy (dx : number,dy : number) { this.x +=dx ; // Strongly typed this this.y +=dy ; // Strongly typed this } } });obj .x = 10;obj .y = 20;obj .moveBy (5, 5);
In the example above, the methods
object in the argument to makeObject
has a contextual type that includes ThisType<D & M>
and therefore the type of this in methods within the methods
object is { x: number, y: number } & { moveBy(dx: number, dy: number): number }
. Notice how the type of the methods
property simultaneously is an inference target and a source for the this
type in methods.
The ThisType<T>
marker interface is simply an empty interface declared in lib.d.ts
. Beyond being recognized in the contextual type of an object literal, the interface acts like any empty interface.