Files
openpanel/packages/core/src/interfaces/prettify.ts
Stefan Pejcic 8595a9f4e5 back
2024-05-08 19:58:53 +02:00

4 lines
62 B
TypeScript

export type Prettify<T> = {
[K in keyof T]: T[K];
} & {};