silly / public /scripts /slash-commands /SlashCommandClosureResult.js
周泳恩
添加core文件压缩和解压功能,保留用户自定义config.yaml
314a0ac
raw
history blame
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;
}