UNPKG

@multinite_official/multiui

Version:

The first and only Component Framework.

7 lines (6 loc) 180 B
/** * The Prettify helper is a utility type that takes an object type and makes the hover overlay more readable. */ export type Prettify<T> = { [K in keyof T]: T[K]; } & {};