mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
10 lines
316 B
JavaScript
10 lines
316 B
JavaScript
export class SlashCommandClosureResult {
|
|
/**@type {boolean}*/ interrupt = false;
|
|
/**@type {string}*/ newText = '';
|
|
/**@type {string}*/ pipe;
|
|
/**@type {boolean}*/ isAborted = false;
|
|
/**@type {string}*/ abortReason;
|
|
/**@type {boolean}*/ isError = false;
|
|
/**@type {string}*/ errorMessage;
|
|
}
|