есть проп data, чтобы его использовать?
// const msg: string | object
const msg = exception.getResponse();
if (msg && typeof msg === 'object') {
console.log(msg.data);
// Property 'data' does not exist on type 'object'.ts(2339)
}
msg.hasOwnProperty('data')
Обсуждают сегодня