all repos — simple-discord-music-bot @ 9028915a52f199d9c710a9cf35f8903433faec88

A Discord bot making use of discord.js and play-yt.

src/types.d.ts (view raw)

 1import { SlashCommandBuilder, Collection, AutocompleteInteraction, ChatInputCommandInteraction } from "discord.js"
 2
 3export interface SlashCommand {
 4    command: SlashCommandBuilder,
 5    execute: (interaction : ChatInputCommandInteraction) => void,
 6    autocomplete?: (interaction: AutocompleteInteraction) => void,
 7    cooldown?: number // in seconds
 8}
 9
10declare module "discord.js" {
11    export interface Client {
12        slashCommands: Collection<string, SlashCommand>
13    }
14}