Blame Raw
· · · 7 lines (138 B)
0 contributors
1export class SlashCommandBreakController {
2 /**@type {boolean} */ isBreak = false;
3
4 break() {
5 this.isBreak = true;
6 }
7}