diff --git a/src/agents/openclaw-tools.subagents.sessions-spawn.test-harness.ts b/src/agents/openclaw-tools.subagents.sessions-spawn.test-harness.ts index d505b48d430..a5590104bde 100644 --- a/src/agents/openclaw-tools.subagents.sessions-spawn.test-harness.ts +++ b/src/agents/openclaw-tools.subagents.sessions-spawn.test-harness.ts @@ -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[0]; -export type GatewayRequest = { method?: string; params?: unknown; timeoutMs?: number }; -export type AgentWaitCall = { runId?: string; timeoutMs?: number }; +type CreateOpenClawToolsOpts = Parameters[0]; +type GatewayRequest = { method?: string; params?: unknown; timeoutMs?: number }; +type AgentWaitCall = { runId?: string; timeoutMs?: number }; type SessionsSpawnGatewayMockOptions = { includeSessionsList?: boolean; includeChatHistory?: boolean;