export interface MakeCase { snake: Snake; camel: Camel; } export type Replace>> = Omit< T, keyof U > & U;