/** * The Prettify helper is a utility type that takes an object type and makes the hover overlay more readable. */ export type Prettify = { [K in keyof T]: T[K]; } & {};