UNPKG

106 BTypeScriptView Raw
1export type Prettify<Type> = Type extends Function ? Type : {
2 [Key in keyof Type]: Type[Key];
3} & {};