From b93dc0963f70fcb2f957710cee3f5dcfe07b1806 Mon Sep 17 00:00:00 2001 From: TriForMine Date: Tue, 13 Apr 2021 09:31:45 +0200 Subject: [PATCH] fix(helpers): fix import StatusUpdate as type (#842) * fix(helpers): add missing export for editBotStatus * fix(helpers): fix import type --- src/helpers/misc/edit_bot_status.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers/misc/edit_bot_status.ts b/src/helpers/misc/edit_bot_status.ts index 34e3553ae..9f4bf3615 100644 --- a/src/helpers/misc/edit_bot_status.ts +++ b/src/helpers/misc/edit_bot_status.ts @@ -1,6 +1,6 @@ import { eventHandlers } from "../../bot.ts"; import { DiscordGatewayOpcodes } from "../../types/codes/gateway_opcodes.ts"; -import { StatusUpdate } from "../../types/gateway/status_update.ts"; +import type { StatusUpdate } from "../../types/gateway/status_update.ts"; import { ws } from "../../ws/ws.ts"; export function editBotStatus(data: Omit) {