1
0
mirror of https://github.com/SillyTavern/SillyTavern.git synced 2025-03-06 20:58:04 +01:00
SillyTavern/public/scripts/slash-commands/SlashCommandBreakController.js
2024-06-24 08:42:10 -04:00

8 lines
138 B
JavaScript

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