From 96d34569b518a7cf903c0789327ba75d004f0976 Mon Sep 17 00:00:00 2001 From: Skillz Date: Wed, 19 Aug 2020 20:54:16 -0400 Subject: [PATCH] proper import --- src/structures/guild.ts | 2 +- src/utils/cache.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/guild.ts b/src/structures/guild.ts index 67c93be27..bac0ba86f 100644 --- a/src/structures/guild.ts +++ b/src/structures/guild.ts @@ -1,5 +1,5 @@ import { CreateGuildPayload } from "../types/guild.ts"; -import Collection from "../utils/collection.ts"; +import { Collection } from "../utils/collection.ts"; import { createRole } from "./role.ts"; import { createMember, Member } from "./member.ts"; import { createChannel } from "./channel.ts"; diff --git a/src/utils/cache.ts b/src/utils/cache.ts index 0615f53d0..e1a56e760 100644 --- a/src/utils/cache.ts +++ b/src/utils/cache.ts @@ -1,4 +1,4 @@ -import Collection from "./collection.ts"; +import { Collection } from "./collection.ts"; import { Message } from "../structures/message.ts"; import { Guild } from "../structures/guild.ts"; import { Channel } from "../structures/channel.ts";