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