1/19
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
Partial
Constructs a type with all properties of T set to optional.
Required
Constructs a type consisting of all properties of T set to required.
Readonly
Constructs a type with all properties of T set to readonly.
Constructs a type with a set of properties K of type T.
Constructs a type by picking the set of properties K from T.
Constructs a type by omitting the set of properties K from T.
Constructs a type by excluding from T all properties that are assignable to U.
Constructs a type by extracting from T all properties that are assignable to U.
Constructs a type by excluding null and undefined from T.
Constructs a tuple type from the types used in the parameters of a function type T.
Constructs a tuple or array type from the types used in the parameters of a constructor type T.
Constructs a type consisting of the return type of function type T.
Constructs a type consisting of the instance type of a constructor function type T.
Extracts the type of the this
parameter for a function type, or unknown
if the function type has no this
parameter.
Removes the this
parameter from a function type.
Marks an object type as being contextually this
-typed.
Constructs a string type by converting all characters in a string type S to uppercase.
Constructs a string type by converting all characters in a string type S to lowercase.
Constructs a string type by capitalizing the first character in a string type S.
Constructs a string type by un-capitalizing the first character in a string type S.