const { Structures } = require('discord.js'); const User = Structures.extend('User', (User) => { class ExtendedUser extends User { constructor(...args) { super(...args); this.storageManager = this.manager.storageManager; this._settings = null; //internal cache of current users' settings; should ALWAYS stay the same as database. } } return ExtendedUser; }); module.exports = User;