UNPKG

discord.js-selfbot-v13-proxy

Version:

A unofficial discord.js-selfbot-v13 fork for creating selfbots with proxy [Based on discord.js v13]

20 lines (17 loc) 359 B
'use strict'; /** * Manages the API methods of a data model. * @abstract */ class BaseManager { constructor(client) { /** * The client that instantiated this Manager * @name BaseManager#client * @type {Client} * @readonly */ Object.defineProperty(this, 'client', { value: client }); } } module.exports = BaseManager;