From 70b8b925a508373cb47efbced37c50f37d9f4adf Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Tue, 12 Oct 2021 19:14:39 +0000 Subject: [PATCH] fix imports --- src/bot.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/bot.ts b/src/bot.ts index 897e14cc0..0df32ba62 100644 --- a/src/bot.ts +++ b/src/bot.ts @@ -19,7 +19,7 @@ import { createRequestBody } from "./rest/create_request_body.ts"; import { processRateLimitedPaths } from "./rest/process_rate_limited_paths.ts"; import { processRequest } from "./rest/process_request.ts"; import { processRequestHeaders } from "./rest/process_request_headers.ts"; -import { RestPayload, RestRateLimitedPath, RestRequest } from "./rest/rest.ts"; +import type { RestPayload, RestRateLimitedPath, RestRequest } from "./rest/rest.ts"; import { runMethod } from "./rest/run_method.ts"; import { simplifyUrl } from "./rest/simplify_url.ts"; import { DiscordGatewayIntents } from "./types/gateway/gateway_intents.ts"; @@ -37,7 +37,7 @@ import { transformVoiceState } from "./transformers/voice_state.ts"; import { transformRole } from "./transformers/role.ts"; import { transformMessage } from "./transformers/message.ts"; import { DiscordenoGuild, transformGuild } from "./transformers/guild.ts"; -import { DiscordenoShard } from "./ws/ws.ts"; +import type { DiscordenoShard } from "./ws/ws.ts"; import { startGateway } from "./ws/start_gateway.ts"; import { spawnShards } from "./ws/spawn_shards.ts"; import { createShard } from "./ws/create_shard.ts";