Skip to content

Latest commit

 

History

History
17 lines (10 loc) · 525 Bytes

File metadata and controls

17 lines (10 loc) · 525 Bytes

Type Alias: OmitSymbolProperties<T>

💗 Help the project

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.


OmitSymbolProperties<T> = { [K in keyof T as K extends symbol ? never : K]: T[K] }

Removes all Symbol properties from a type

Type Parameters

Type Parameter
T