FlattenKeys TypeAlias
Return a type thats equivalent to the input, but with different IntelliSense. This tends to convert unions and intersections into objects.
This API is reserved for internal system use and should not be imported directly. It may change at any time without notice.
For more information about our API support guarantees, see here.
Signature
export type FlattenKeys<T> = [{
[Property in keyof T]: T[Property];
}][_InlineTrick];
Type Parameters
Parameter | Description |
---|---|
T |