export function isServerError(e: any) { return e && typeof (e) === 'object' && e.hasOwnProperty('response') && e.response && e.response.hasOwnProperty('data') && e.response.data; } export function getServerErrorMessage(e: any) { const error = e.response.data; if (error.hasOwnProperty('message')) { return error.message; } return ''; }