SillyTavern/public/scripts/slash-commands/SlashCommandBreakController.js

8 lines
138 B
JavaScript
Raw Normal View History

2024-06-24 14:36:39 +02:00
export class SlashCommandBreakController {
/**@type {boolean} */ isBreak = false;
break() {
this.isBreak = true;
}
}