From 4031578f4b93ff102ee3ccedf3cf4f2d86299179 Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Sun, 4 Apr 2021 01:44:30 +0000 Subject: [PATCH] fix: more missing imports --- src/handlers/guilds/GUILD_CREATE.ts | 1 + src/types/users/connection.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/handlers/guilds/GUILD_CREATE.ts b/src/handlers/guilds/GUILD_CREATE.ts index 5eb5bb663..2e377ceee 100644 --- a/src/handlers/guilds/GUILD_CREATE.ts +++ b/src/handlers/guilds/GUILD_CREATE.ts @@ -3,6 +3,7 @@ import { cache, cacheHandlers } from "../../cache.ts"; import { structures } from "../../structures/mod.ts"; import { basicShards } from "../../ws/shard.ts"; import { DiscordGatewayPayload } from "../../types/gateway/gateway_payload.ts"; +import { DiscordGuild } from "../../types/guilds/guild.ts"; export async function handleGuildCreate( data: DiscordGatewayPayload, diff --git a/src/types/users/connection.ts b/src/types/users/connection.ts index 97e638452..13a78c17a 100644 --- a/src/types/users/connection.ts +++ b/src/types/users/connection.ts @@ -1,5 +1,6 @@ import { SnakeCaseProps } from "../util.ts"; import { DiscordVisibilityTypes } from "./visibility_types.ts"; +import { Integration } from "../guilds/integration.ts" export interface Connection { /** id of the connection account */