File size: 138 Bytes
b82d373
 
 
 
 
 
 
1
2
3
4
5
6
7
8
export class SlashCommandBreakController {
    /**@type {boolean} */ isBreak = false;

    break() {
        this.isBreak = true;
    }
}