mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-13 02:20:41 +01:00
14 lines
278 B
JavaScript
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;
|
||
|
}
|
||
|
}
|