Howdy, I'm trying to get a text channel from a command channel option, but I'm getting the error that 'getChannel' property doesn't exist even though it appears as a method in the docs and I've seen it in other people's code. I'm using the typescript complete example bot as a base. Npm ls returns discord.js 14.14.1
const channelOption = interaction.options.getChannel('channel', true);```
https://discord.js.org/docs/packages/discord.js/14.14.1/CommandInteractionOptionResolver:Class
```javascript
import { ApplyOptions } from '@sapphire/decorators';
import { Command } from '@sapphire/framework';
import { ChannelType, CommandInteraction, PermissionsBitField } from 'discord.js';
@ApplyOptions<Command.Options>({
name: 'set-image-channel',
description: 'Sets a channel where only images are allowed',
requiredUserPermissions: [PermissionsBitField.Flags.ManageGuild],
preconditions: ['GuildOnly']
})
export class UserCommand extends Command {
private configPath = path.join(process.cwd(), 'config.json');
public override registerApplicationCommands(registry: Command.Registry): void {
registry.registerChatInputCommand((builder) =>
builder
.setName('set-image-channel')
.setDescription(this.description)
.addChannelOption(option =>
option.setName('channel')
.setDescription('')
.setRequired(true)
.addChannelTypes(ChannelType.GuildText)
)
);
}
public override async chatInputRun(interaction: CommandInteraction) {
const channelOption = interaction.options.getChannel('channel', true);
...
}
}