import { TransformPipe } from '@discord-nestjs/common'; import { Command, DiscordTransformedCommand, TransformedCommandExecutionContext, UsePipes, } from '@discord-nestjs/core'; import { InteractionReplyOptions } from 'discord.js'; @Command({ name: 'current', description: 'Print the current track information', }) @UsePipes(TransformPipe) export class CurrentTrackCommand implements DiscordTransformedCommand { handler( dto: unknown, executionContext: TransformedCommandExecutionContext, ): InteractionReplyOptions | string { return 'nice'; } }