From 297710dbbecc4b7f1a1a18d08ddf993bcff796bb Mon Sep 17 00:00:00 2001 From: Jacob Schlecht Date: Fri, 17 Jul 2026 21:38:54 -0600 Subject: [PATCH] fix: Fix missing import for pr 125 (#170) Signed-off-by: Jacob Schlecht --- src/Client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Client.ts b/src/Client.ts index 55aee0b9..ecf34c73 100644 --- a/src/Client.ts +++ b/src/Client.ts @@ -4,7 +4,7 @@ import { batch, createSignal } from "solid-js"; import { ReactiveMap } from "@solid-primitives/map"; import { AsyncEventEmitter } from "@vladfrangu/async_event_emitter"; import { API } from "stoat-api"; -import type { DataLogin, RevoltConfig, Role } from "stoat-api"; +import type { DataLogin, Error, RevoltConfig, Role } from "stoat-api"; import type { Channel } from "./classes/Channel.js"; import type { Emoji } from "./classes/Emoji.js";