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

8 lines
206 B
JavaScript
Raw Normal View History

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