refactor: trim sessions spawn harness type exports

This commit is contained in:
Peter Steinberger
2026-05-01 12:06:13 +01:00
parent 1c9b4d871c
commit 195a58224c

View File

@@ -13,9 +13,9 @@ type CreateSessionsSpawnTool =
(typeof import("./tools/sessions-spawn-tool.js"))["createSessionsSpawnTool"];
type SubagentRegistryTesting = (typeof import("./subagent-registry.js"))["__testing"];
type SubagentSpawnTesting = (typeof import("./subagent-spawn.js"))["__testing"];
export type CreateOpenClawToolsOpts = Parameters<CreateSessionsSpawnTool>[0];
export type GatewayRequest = { method?: string; params?: unknown; timeoutMs?: number };
export type AgentWaitCall = { runId?: string; timeoutMs?: number };
type CreateOpenClawToolsOpts = Parameters<CreateSessionsSpawnTool>[0];
type GatewayRequest = { method?: string; params?: unknown; timeoutMs?: number };
type AgentWaitCall = { runId?: string; timeoutMs?: number };
type SessionsSpawnGatewayMockOptions = {
includeSessionsList?: boolean;
includeChatHistory?: boolean;