mirror of
https://github.com/SrIzan10/handler.git
synced 2026-05-01 10:45:17 +00:00
19 lines
315 B
TypeScript
19 lines
315 B
TypeScript
/**
|
|
* @enum { number };
|
|
*/
|
|
enum CommandType {
|
|
Text = 0b0000001,
|
|
Slash = 0b0000010,
|
|
MenuUser = 0b0000100,
|
|
MenuMsg = 0b0001000,
|
|
Button = 0b0010000,
|
|
MenuSelect = 0b0100000,
|
|
Both = 0b0000011,
|
|
}
|
|
|
|
enum PluginType {
|
|
Command = 0b01,
|
|
Event = 0b10,
|
|
}
|
|
|
|
export { CommandType, PluginType }; |