File size: 206 Bytes
b82d373
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import { SlashCommandExecutor } from './SlashCommandExecutor.js';

export class SlashCommandBreak extends SlashCommandExecutor {
    get value() {
        return this.unnamedArgumentList[0]?.value;
    }
}