Extracts all unique keys from every member of a union type.
Example: type U = { a: number } | { b: string }; KeysOfUnion → "a" | "b"
Extracts all unique keys from every member of a union type.
Example: type U = { a: number } | { b: string }; KeysOfUnion → "a" | "b"