Files
ChuQuadrant/public/scripts/slash-commands/SlashCommandClosureResult.js
2025-09-14 23:43:10 +08:00

11 lines
371 B
JavaScript

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;
}