/**
* Create a new type by merging two types.
* The second type overrides those attributes that are present in the first one.
*
* @paramM - First type.
* @paramN - Second type.
*
* @returns Merged types.
*/exporttypeMerge<M, N> = Omit<M, Extract<keyof M, keyof N>> & N;