type
Frequently used types and type helpers for TypeScript.
Type Aliases
ArrayKeys<T>
Type Parameters
• T
Defined in
tmp/commons/src/lib/type.ts:20
PartialBy<T, K>
Make selected properties in T optional.
Type Parameters
• T
The type to make partial.
• K extends keyof T
The keys of T to make optional.
Defined in
tmp/commons/src/lib/type.ts:11
SaveData<T>
Get the return type of the toJSON method of an object.
Type Parameters
• T extends object
The object type.
Defined in
tmp/commons/src/lib/type.ts:17
StringArrayKeys<T>
Type Parameters
• T
Defined in
tmp/commons/src/lib/type.ts:24
StringKeys<T>
Type Parameters
• T