Type Alias: PrettifyObject<T>
PrettifyObject<
T> ={ [K in keyof T]: T[K] }
Defined in: types.ts:157
An utility type that fuses intersections of objects.
Type Parameters
| Type Parameter | 
|---|
| Textendsobject | 
Example
type Objects = {
  foo: string;
  bar: number;
} & {
  hello: boolean;
  world: bigint;
};
type PrettyObjects = PrettifyObject<Objects>;
// {
//   foo: string;
//   bar: number;
//   hello: boolean;
//   world: bigint
// }