Home > @xoram/core > Prettify
Prettify type
Prettify types.
Shamelessly stolen from https://timdeschryver.dev/bits/pretty-typescript-types
Signature:
typescript
export type Prettify<T> = {
[K in keyof T]: T[K];
} & {};
1
2
3
2
3