Takes an object type and makes the hover overlay more readable. Credits to Matt Pocock for the idea.
The prettified object
type Mess = {
a: string;
} & {
b: number;
} & {
c: boolean;
};
type Pretty = Prettify<Mess> // { a: string; b: number; c: boolean; }
Pretty