UNPKG

discord.js

Version:

A powerful library for interacting with the Discord API

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;