From 7fef0567c7ff81e5b2e6698304a1d51b1b1a20c7 Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Fri, 17 Jul 2026 23:18:14 -0600 Subject: [PATCH] fix: linter errors regarding unused imports (#171) Signed-off-by: Jacob Schlecht --- src/classes/ServerMember.ts | 1 - src/hydration/channel.ts | 2 -- src/hydration/message.ts | 2 +- 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/classes/ServerMember.ts b/src/classes/ServerMember.ts index e04cc39b..e089bc35 100644 --- a/src/classes/ServerMember.ts +++ b/src/classes/ServerMember.ts @@ -2,7 +2,6 @@ import type { DataBanCreate, DataMemberEdit, MemberCompositeKey, - Role, } from "stoat-api"; import type { ServerMemberCollection } from "../collections/ServerMemberCollection.js"; diff --git a/src/hydration/channel.ts b/src/hydration/channel.ts index d835afb8..f29a7ccc 100644 --- a/src/hydration/channel.ts +++ b/src/hydration/channel.ts @@ -1,10 +1,8 @@ -import { ReactiveMap } from "@solid-primitives/map"; import { ReactiveSet } from "@solid-primitives/set"; import type { Channel as APIChannel } from "stoat-api"; import type { Client } from "../Client.js"; import { File } from "../classes/File.js"; -import { VoiceParticipant } from "../classes/VoiceParticipant.js"; import type { Merge } from "../lib/merge.js"; import type { Hydrate } from "./index.js"; diff --git a/src/hydration/message.ts b/src/hydration/message.ts index 4475dee8..a7fdbb33 100644 --- a/src/hydration/message.ts +++ b/src/hydration/message.ts @@ -1,6 +1,6 @@ import { ReactiveMap } from "@solid-primitives/map"; import { ReactiveSet } from "@solid-primitives/set"; -import type { Embed, Interactions, Masquerade, Message } from "stoat-api"; +import type { Interactions, Masquerade, Message } from "stoat-api"; import type { Client } from "../Client.js"; import { File } from "../classes/File.js";