Files
SillyTavern/public/scripts/slash-commands/SlashCommand.js
2024-04-07 16:50:04 -04:00

9 lines
257 B
JavaScript

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