mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-12 17:36:22 +01:00
8 lines
206 B
JavaScript
8 lines
206 B
JavaScript
import { SlashCommandExecutor } from './SlashCommandExecutor.js';
|
|
|
|
export class SlashCommandBreak extends SlashCommandExecutor {
|
|
get value() {
|
|
return this.unnamedArgumentList[0]?.value;
|
|
}
|
|
}
|