Updated some types

This commit is contained in:
2024-09-09 09:18:19 +02:00
parent 6456de44ac
commit 7670299491
3 changed files with 9 additions and 6 deletions

View File

@@ -67,7 +67,7 @@ export default async function prune(interaction: ChatInputCommandInteraction): P
)
]
}).then(async (m) => {
const collector = interaction.channel!.createMessageComponentCollector({
const collector = m.createMessageComponentCollector({
componentType: ComponentType.Button,
filter: (i: ButtonInteraction) =>
(i.customId === buttonid || i.customId === cancelid) &&

View File

@@ -1,5 +1,5 @@
import { embedColor, hypixelGuildID } from "config/options.js"
import { ChatInputCommandInteraction, GuildMember } from "discord.js"
import { ChatInputCommandInteraction, GuildMember, TextChannel } from "discord.js"
import { IGuildData } from "interfaces"
import verify from "schemas/verifyTag.js"
import env from "utils/Env.js"
@@ -117,7 +117,7 @@ export default async function updateAll(interaction: ChatInputCommandInteraction
console.log("Successfully updated all roles.")
await interaction.channel?.send({
await (interaction.channel as TextChannel)?.send({
embeds: [{
description: "Successfully updated all roles.",
color: embedColor