sillytavern / public /scripts /slash-commands /SlashCommandClosureResult.js
Nocigar's picture
Upload 475 files
b82d373 verified
raw
history blame contribute delete
371 Bytes
export class SlashCommandClosureResult {
/**@type {boolean}*/ interrupt = false;
/**@type {string}*/ pipe;
/**@type {boolean}*/ isBreak = false;
/**@type {boolean}*/ isAborted = false;
/**@type {boolean}*/ isQuietlyAborted = false;
/**@type {string}*/ abortReason;
/**@type {boolean}*/ isError = false;
/**@type {string}*/ errorMessage;
}