twitch-core
Version:
Twitch bot command client
49 lines (48 loc) • 1.13 kB
TypeScript
declare const CommandConstants: Readonly<{
/**
* Global settings key to save global bot preferences
*/
GLOBAL_SETTINGS_KEY: string;
/**
* Service url for Emotes service
*/
GLOBAL_EMOTES_URL: string;
/**
* Known bot
*/
BOT_TYPE_KNOWN: string;
/**
* Normal bot type (user, not mod)
*/
BOT_TYPE_NORMAL: string;
/**
* Verified bot
*/
BOT_TYPE_VERIFIED: string;
/**
* Normal bot type with mod (user, channel mod)
*/
BOT_TYPE_NORMAL_MODDED: string;
/**
* Enumeration for message limits configuration
*/
MESSAGE_LIMITS: {
bot_type_normal: {
messages: number;
timespan: number;
};
bot_type_normal_modded: {
messages: number;
timespan: number;
};
bot_type_known: {
messages: number;
timespan: number;
};
bot_type_verified: {
messages: number;
timespan: number;
};
};
}>;
export { CommandConstants };