mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-06-05 21:59:27 +02:00
11 lines
358 B
JavaScript
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;
|
|
}
|