agent-afk 5.30.0 → 5.30.1

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,4 +1,5 @@
1
1
  export declare function formatDuration(ms: number): string;
2
2
  export declare function formatCost(usd: number): string;
3
+ export declare function formatToolCallStat(count: number): string;
3
4
  export declare function formatTokens(count: number): string;
4
5
  export declare function formatFileSize(bytes: number): string;
@@ -6,6 +6,7 @@ export interface CommittedBandHost {
6
6
  committedBand: string[];
7
7
  committedBandTopRow: number;
8
8
  committedBandBottomRow: number;
9
+ lastMeasuredFrameTop: number;
9
10
  committedBandPaintedRows: number;
10
11
  bandReflowCache: BandReflowCache | null;
11
12
  committing: boolean;
@@ -59,6 +59,7 @@ export declare class TerminalCompositor {
59
59
  committedBand: string[];
60
60
  committedBandTopRow: number;
61
61
  committedBandBottomRow: number;
62
+ lastMeasuredFrameTop: number;
62
63
  committedBandPaintedRows: number;
63
64
  bandReflowCache: BandReflowCache | null;
64
65
  lastKnownRows: number;
@@ -23,6 +23,7 @@ export interface FrameHost {
23
23
  committedBand: string[];
24
24
  committedBandTopRow: number;
25
25
  committedBandBottomRow: number;
26
+ lastMeasuredFrameTop: number;
26
27
  committedBandPaintedRows: number;
27
28
  bandReflowCache: BandReflowCache | null;
28
29
  hasCommitted: boolean;