UNPKG

discord.js-selfbot-v13

Version:

A unofficial discord.js fork for creating selfbots [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;