Current section
Files
Jump to
Current section
Files
src/mineflayer_chat_message_ffi.js
export function get_text(chat_message, idx) {
return chat_message.getText(idx)
}
export function to_string(chat_message) {
return chat_message.toString()
}
export function to_motd(chat_message) {
return chat_message.toMotd()
}
export function to_html(chat_message) {
return chat_message.toHTML()
}
export function to_ansi(chat_message) {
return chat_message.toAnsi()
}
export function value_of(chat_message) {
return chat_message.valueOf()
}