|
|
|
|
|
by simplicitea
2042 days ago
|
|
readability? who needs it when i can now say `this, but camel case and no nulls` export type Camel<T> = { [K in keyof T as K extends string ? `${Uncapitalize<string & K>}` : K]: T[K] extends Record<any, any> ? Camel<Exclude<T[K], null>> : Exclude<T[K], null> }
|
|