make matchProvider and valueProvider optional

This commit is contained in:
LenAnderson 2024-07-04 11:50:00 -04:00
parent afb849cfb6
commit fcf1830887
1 changed files with 2 additions and 2 deletions

View File

@ -57,9 +57,9 @@ export class SlashCommandEnumValue {
* @param {string} value - The value * @param {string} value - The value
* @param {string?} description - Optional description, displayed in a second line * @param {string?} description - Optional description, displayed in a second line
* @param {EnumType?} type - type of the enum (defining its color) * @param {EnumType?} type - type of the enum (defining its color)
* @param {string} typeIcon - The icon to display (Can be pulled from `enumIcons` for common ones) * @param {string?} typeIcon - The icon to display (Can be pulled from `enumIcons` for common ones)
*/ */
constructor(value, description = null, type = 'enum', typeIcon = '◊', matchProvider, valueProvider) { constructor(value, description = null, type = 'enum', typeIcon = '◊', matchProvider = null, valueProvider = null) {
this.value = value; this.value = value;
this.description = description; this.description = description;
this.type = type ?? 'enum'; this.type = type ?? 'enum';