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";