Files
SillyTavern/public/scripts/slash-commands/SlashCommandClosureResult.js
2024-04-27 09:11:54 -04:00

8 lines
236 B
JavaScript

export class SlashCommandClosureResult {
/**@type {boolean}*/ interrupt = false;
/**@type {string}*/ newText = '';
/**@type {string}*/ pipe;
/**@type {boolean}*/ isAborted = false;
/**@type {string}*/ abortReason;
}