Files
st/web-app/public/scripts/slash-commands/SlashCommandBreak.js
2026-02-10 17:48:27 +08:00

8 lines
206 B
JavaScript

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