@twitchfy/chatbot
Version:
A powerful node module to make your own Twitch ChatBot
24 lines (23 loc) • 503 B
JavaScript
;
/* eslint-disable @typescript-eslint/ban-ts-comment */
/* eslint-disable @typescript-eslint/no-explicit-any */
Object.defineProperty(exports, "__esModule", { value: true });
exports.ChatCommand = void 0;
/**
* The command structure.
*/
class ChatCommand {
/**
* The name of the command.
*/
name;
/**
* The options of the command.
*/
options;
/**
* The permissions of the command.
*/
permissions;
}
exports.ChatCommand = ChatCommand;