fix 5
This commit is contained in:
@@ -1,35 +1,35 @@
|
||||
'use strict';
|
||||
|
||||
const BaseMessageComponent = require('./BaseMessageComponent');
|
||||
const { MessageComponentTypes } = require('../util/Constants');
|
||||
|
||||
class TextDisplayComponent extends BaseMessageComponent {
|
||||
/**
|
||||
* @property {String} [content] Text that will be displayed similar to a message
|
||||
*/
|
||||
|
||||
/**
|
||||
* @param {TextDisplayComponent | APITextDisplayComponent} [data={}] The data
|
||||
*/
|
||||
constructor(data = {}) {
|
||||
super({ type: 'TEXT_DISPLAY' }, data);
|
||||
|
||||
/**
|
||||
* Text that will be displayed similar to a message
|
||||
* @type {String}
|
||||
*/
|
||||
this.content = data.content ?? null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns {APITextDisplayComponent}
|
||||
*/
|
||||
toJSON() {
|
||||
return {
|
||||
type: MessageComponentTypes[this.type],
|
||||
content: this.content,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = TextDisplayComponent;
|
||||
'use strict';
|
||||
|
||||
const BaseMessageComponent = require('./BaseMessageComponent');
|
||||
const { MessageComponentTypes } = require('../util/Constants');
|
||||
|
||||
class TextDisplayComponent extends BaseMessageComponent {
|
||||
/**
|
||||
* @property {String} [content] Text that will be displayed similar to a message
|
||||
*/
|
||||
|
||||
/**
|
||||
* @param {TextDisplayComponent | APITextDisplayComponent} [data={}] The data
|
||||
*/
|
||||
constructor(data = {}) {
|
||||
super({ type: 'TEXT_DISPLAY' }, data);
|
||||
|
||||
/**
|
||||
* Text that will be displayed similar to a message
|
||||
* @type {String}
|
||||
*/
|
||||
this.content = data.content ?? null;
|
||||
}
|
||||
|
||||
/**
|
||||
* @returns {APITextDisplayComponent}
|
||||
*/
|
||||
toJSON() {
|
||||
return {
|
||||
type: MessageComponentTypes[this.type],
|
||||
content: this.content,
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = TextDisplayComponent;
|
||||
|
||||
Reference in New Issue
Block a user