agent-afk 5.82.10 → 5.82.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,5 @@
1
1
  import type { ToolEntry, Entry } from './tool-lane-render.js';
2
- import { formatGroupedToolResults } from './tool-lane-render-grouped-root.js';
3
2
  declare function formatAgentSummary(agent: ToolEntry, children: Entry[], childMap: Map<string, Entry[]>, homeDir?: string, ancestorIsLast?: readonly boolean[]): string;
4
3
  declare function formatAgentHeader(agent: ToolEntry, ancestorIsLast?: readonly boolean[]): string;
5
4
  declare function formatAgentChildren(agent: ToolEntry, children: Entry[], childMap: Map<string, Entry[]>, homeDir?: string, ancestorIsLast?: readonly boolean[]): string[];
6
- declare function renderGroupedRootTools(groups: Map<string, ToolEntry[]>, groupOrder: string[], homeDir?: string): string[];
7
- export { formatAgentSummary, formatAgentHeader, formatAgentChildren, renderGroupedRootTools, formatGroupedToolResults, };
5
+ export { formatAgentSummary, formatAgentHeader, formatAgentChildren };
@@ -1,2 +1,3 @@
1
1
  import type { ToolEntry } from './tool-lane-render.js';
2
2
  export declare function formatGroupedToolResults(toolName: string, entries: ToolEntry[], cols: number, homeDir?: string): string;
3
+ export declare function renderGroupedRootTools(groups: Map<string, ToolEntry[]>, groupOrder: string[], homeDir?: string): string[];
@@ -42,4 +42,5 @@ export declare function colorizeIndent(plainIndent: string, g: Readonly<Glyphs>)
42
42
  export declare function renderTextChildLines(text: string, indent: string, g: Readonly<Glyphs>): string[];
43
43
  export { assignConnectors, addOverflowSynthetic, addResultSummarySynthetic, type GroupedSibling, type OverflowSibling, type ResultSummarySibling, type RenderableSibling, type ConnectedSibling, } from './tool-lane-render-grouping.js';
44
44
  export { renderOverlayChildren, renderFlushChildren } from './tool-lane-render-children.js';
45
- export { formatAgentSummary, formatAgentHeader, formatAgentChildren, renderGroupedRootTools, formatGroupedToolResults, } from './tool-lane-render-agent.js';
45
+ export { formatAgentSummary, formatAgentHeader, formatAgentChildren, } from './tool-lane-render-agent.js';
46
+ export { renderGroupedRootTools, formatGroupedToolResults, } from './tool-lane-render-grouped-root.js';