function unnecessaryFunction(){
let details: SignInDetails = {
user: user,
account: account,
company: company
};
return details;
}
I am being told that the details
value is unnecessary. Is there an alternative way to return it?