1 import { SlashCommandExecutor } from './SlashCommandExecutor.js';
2
3 export class SlashCommandBreak extends SlashCommandExecutor {
4 get value() {
5 return this.unnamedArgumentList[0]?.value;
6 }
7 }
1 import { SlashCommandExecutor } from './SlashCommandExecutor.js';
2
3 export class SlashCommandBreak extends SlashCommandExecutor {
4 get value() {
5 return this.unnamedArgumentList[0]?.value;
6 }
7 }