1 | /** |
2 | * @param { { |
3 | * errorCode: number, |
4 | * errorMessage: string |
5 | * } } responseObject |
6 | */ |
7 | export function conexionMqttPerdida(responseObject) { |
8 | if (responseObject.errorCode !== 0) { |
9 | const mensaje = "Conexión terminada " + responseObject.errorMessage |
10 | console.error(mensaje) |
11 | alert(mensaje) |
12 | } |
13 | } |