Files
custom_discordjs/structures/DataManager.js
T

6 lines
198 B
JavaScript
Raw Normal View History

2023-04-07 20:35:03 -04:00
export class DataManager {
2023-04-07 19:13:15 -04:00
/** @type {import('./client/client.js').Client} */
client;
constructor(c) { this.client = c; Object.defineProperty(this, 'client', { enumerable: false }); }
2023-04-07 19:13:15 -04:00
}