Files
SillyTavern/public/scripts/slash-commands/SlashCommand.js
2024-03-25 08:53:36 -04:00

10 lines
302 B
JavaScript

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