From 06054db655c07bf5ab6377296c11c9eb52b4df6f Mon Sep 17 00:00:00 2001 From: Jacob Nguyen <76754747+jacoobes@users.noreply.github.com> Date: Wed, 8 Jun 2022 13:46:31 -0500 Subject: [PATCH] fix: intellij warnings --- src/handler/structures/context.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/handler/structures/context.ts b/src/handler/structures/context.ts index 54661f8..4a2cc00 100644 --- a/src/handler/structures/context.ts +++ b/src/handler/structures/context.ts @@ -6,20 +6,16 @@ import type { GuildMember, InteractionReplyOptions, Message, - MessageEditOptions, ReplyMessageOptions, Snowflake, TextBasedChannel, User, - WebhookEditMessageOptions, } from 'discord.js'; import { None, Option, Some } from 'ts-results'; import type { ConformedEditOptions, Nullish } from '../../types/handler'; import { ExternallyUsed } from '../utilities/externallyUsed'; import { SernError } from './errors'; import { MessagePayload } from 'discord.js'; -import { first } from 'rxjs'; -import { type } from 'typedoc/dist/lib/output/themes/default/partials/type'; function firstSome(...args: Option[]): Nullish { for (const op of args) {