Remove test type assertion suppressions

This commit is contained in:
Federico Jaramillo Martinez
2026-05-17 08:58:46 +02:00
parent 6a8f8b6ccf
commit c5c45195d7
7 changed files with 330 additions and 219 deletions
+3 -5
View File
@@ -1,8 +1,6 @@
import type { AgentSessionRuntime } from "@earendil-works/pi-coding-agent";
export interface ActiveSession {
runtime: AgentSessionRuntime;
export interface ActiveSession<TRuntime> {
runtime: TRuntime;
unsubscribe: () => void;
}
export type GetActiveSession = (sessionId: string) => Promise<ActiveSession>;
export type GetActiveSession<TRuntime> = (sessionId: string) => Promise<ActiveSession<TRuntime>>;