8 lines
138 B
JavaScript
8 lines
138 B
JavaScript
|
export class SlashCommandBreakController {
|
||
|
/**@type {boolean} */ isBreak = false;
|
||
|
|
||
|
break() {
|
||
|
this.isBreak = true;
|
||
|
}
|
||
|
}
|