refactor: trim subagent type exports

This commit is contained in:
Peter Steinberger
2026-05-02 00:34:30 +01:00
parent 682e05532d
commit 42b7b2b924
3 changed files with 3 additions and 3 deletions

View File

@@ -50,7 +50,7 @@ type SubagentOutputSnapshot = {
waitingForContinuation?: boolean;
};
export type AgentWaitResult = {
type AgentWaitResult = {
status?: string;
startedAt?: number;
endedAt?: number;

View File

@@ -32,7 +32,7 @@ export type AnnounceQueueItem = {
sourceTool?: string;
};
export type AnnounceQueueSettings = {
type AnnounceQueueSettings = {
mode: QueueMode;
debounceMs?: number;
cap?: number;

View File

@@ -17,7 +17,7 @@ type ToolProfilePolicy = {
deny?: string[];
};
export type CoreToolSection = {
type CoreToolSection = {
id: string;
label: string;
tools: Array<{