Files
SillyTavern/public/scripts/slash-commands/SlashCommand.js
2024-03-25 10:44:52 -04:00

11 lines
358 B
JavaScript

export class SlashCommand {
/**@type {String}*/ name;
/**@type {Function}*/ callback;
/**@type {String}*/ helpString;
/**@type {String}*/ helpStringFormatted;
/**@type {String}*/ helpStringFormattedWithoutName;
/**@type {Boolean}*/ interruptsGeneration;
/**@type {Boolean}*/ purgeFromMessage;
/**@type {String[]}*/ aliases;
}