SillyTavern/public/scripts/slash-commands/SlashCommandEnumValue.js

14 lines
278 B
JavaScript

export class SlashCommandEnumValue {
/**@type {string}*/ value;
/**@type {string}*/ description;
constructor(value, description = null) {
this.value = value;
this.description = description;
}
toString() {
return this.value;
}
}