Fix jsdoc bug
Some checks failed
Update Wiki from JSDoc / update-wiki (pull_request) Failing after 10s
Lint JavaScript/Node.js / lint-js (pull_request) Failing after 10s
DRB Tests / drb_mocha_tests (pull_request) Successful in 25s

- Was importing class within the jsdoc
This commit is contained in:
Logan Cusano
2024-08-17 17:56:25 -04:00
parent bde7dbce45
commit cf9f48dfa7

View File

@@ -2,12 +2,12 @@ import {
getConfig,
setConfig,
} from "../../modules/mongo-wrappers/mongoConfigWrappers.mjs";
import { ActivityType, PresenceUpdateStatus } from "discord.js";
import { ActivityType, PresenceUpdateStatus, Client } from "discord.js";
class PresenceManager {
/**
* Creates an instance of PresenceManager.
* @param {import('discord.js').Client} client - The Discord client instance.
* @param {Client} client - The Discord client instance.
*/
constructor(client) {
this.client = client;