Do you want to get the status of a message if that is pending, delivered or read??
If that's what you want, you can do something like this:
const sentMessage = await client.sendMessage(chatId, content);
console.log(sentMessage.ack)
sentMessage.ack will be either one of these:
ACK_ERROR
ACK_PENDING
ACK_SERVER
ACK_DEVICE
ACK_READ
ACK_PLAYED
For more information, you can refer the docs