8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
export default class AwEChatMessage extends ChatMessage {
|
|
/** @override */
|
|
async getHTML(...args) {
|
|
const html = await super.getHTML(...args)
|
|
return html
|
|
}
|
|
}
|