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

8 lines
138 B
JavaScript

export class SlashCommandBreakController {
/**@type {boolean} */ isBreak = false;
break() {
this.isBreak = true;
}
}