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

8 lines
206 B
JavaScript
Raw Normal View History

2024-06-24 14:36:39 +02:00
import { SlashCommandExecutor } from './SlashCommandExecutor.js';
2024-07-04 18:26:58 +02:00
export class SlashCommandBreak extends SlashCommandExecutor {
get value() {
return this.unnamedArgumentList[0]?.value;
}
}