UNPKG

@twitchfy/chatbot

Version:

A powerful node module to make your own Twitch ChatBot

22 lines (21 loc) 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Base = void 0; /** * Represents the base class for all structures. * @internal */ class Base { /** * The current instance of the chatbot. */ chatbot; /** * Creates a new instance of the base class. * @param chatbot The current instance of the chatbot. */ constructor(chatbot) { this.chatbot = chatbot; } } exports.Base = Base;