const { Structures } = require('discord.js'); const TextChannel = Structures.extend('TextChannel', (TextChannel) => { class ExtendedTextChannel extends TextChannel { get display() { return `#${this.name}`; } } return ExtendedTextChannel; }); module.exports = TextChannel;