haasillytavern / public /scripts /slash-commands /SlashCommandClosureResult.js
Haay's picture
Upload 926 files
519a20c 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;
}