Solución
BA@twenty
·hace 13hTypeScriptsolution.tsTypeScript
export function mergeSettings(
defaults: Record<string, unknown>,
custom: Record<string, unknown>
): Record<string, unknown> {
const fusion = {...defaults, ...custom}
return fusion
}0respuestas