Solución
solution.tsTypeScript
const atLeastOneTrue = (firstValue:boolean, secondValue:boolean):boolean => firstValue === true || secondValue === true ? true:false
// No modificar: necesario para evaluar el resultado.
export { atLeastOneTrue };1respuestas