Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Schlauer-Hax committed Aug 6, 2023
1 parent 0e2b6ee commit 5bef02a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion interactions.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import { ActionRowBuilder, ButtonBuilder, ButtonInteraction, ButtonStyle, ChannelType, EmbedBuilder, GuildMember, GuildMemberRoleManager, Interaction, ModalBuilder, PermissionsBitField, TextChannel, TextInputBuilder, TextInputStyle, UserSelectMenuBuilder, VoiceChannel } from "discord.js"
import DB from "./db";
import config from "./config.json";
//@ts-ignore
import * as config from './config.json'

export async function handleInteraction(interaction: Interaction, db: DB) {

Expand Down
3 changes: 2 additions & 1 deletion partner.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Client, Collection, GuildMember, Invite, TextChannel } from "discord.js";
import config from "./config.json";
//@ts-ignore
import * as config from './config.json'
import DB from "./db";
import { defaultEmbed } from "./helper";

Expand Down

0 comments on commit 5bef02a

Please sign in to comment.