Please enable JavaScript.
Coggle requires JavaScript to display documents.
TypeScript (Partial<T> (Constructs a type with all properties of T…
Constructs a type with all properties of T set to optional. This utility will return a type that represents all subsets of a given type.
Readonly<T>
Constructs a type with all properties of T set to readonly, meaning the properties of the constructed type cannot be reassigned.
Record<K,T>
Constructs a type with a set of properties K of type T. This utility can be used to map the properties of a type to another type.
-
-
-
-
-
-
-
-
-