agent-afk 5.176.1 → 5.176.2
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.
|
@@ -31,8 +31,6 @@ export declare function registerOverlaySlots(overlayComposer: OverlayComposer, c
|
|
|
31
31
|
childActivity?: ChildActivityTracker;
|
|
32
32
|
getInterrupting: () => boolean;
|
|
33
33
|
getSoftStopping: () => boolean;
|
|
34
|
-
getTtfbStartedAt?: () => number | undefined;
|
|
35
|
-
isTtfbDone?: () => boolean;
|
|
36
34
|
getActiveSubagents?: () => ReadonlyMap<string, SubagentStatusBarSpec>;
|
|
37
35
|
}): void;
|
|
38
36
|
export declare function formatInterruptAffordance(interrupting: boolean): string;
|
|
@@ -4,11 +4,9 @@ export interface TtfbTickCtx {
|
|
|
4
4
|
ttfbStartedAt: number | undefined;
|
|
5
5
|
ttfbDone: boolean;
|
|
6
6
|
lastTtfbAnnotation: string;
|
|
7
|
-
ttfbSpinnerFrame: number;
|
|
8
7
|
isTTY: boolean;
|
|
9
8
|
disposed: boolean;
|
|
10
9
|
overlayComposer: OverlayComposer | null;
|
|
11
10
|
}
|
|
12
11
|
export declare function checkTtfbAnnotation(ctx: TtfbTickCtx, now: number): boolean;
|
|
13
12
|
export declare function applyFirstContent(isDone: boolean, setDone: () => void, overlayComposer: OverlayComposer | null): boolean;
|
|
14
|
-
export declare function renderTtfbWaitingProgress(getTtfbStartedAt: (() => number | undefined) | undefined, isTtfbDone: (() => boolean) | undefined, getSpinnerFrame: (() => number) | undefined): string;
|
|
@@ -44,7 +44,6 @@ export declare class StreamRenderer {
|
|
|
44
44
|
private readonly ttfbStartedAt;
|
|
45
45
|
private ttfbDone;
|
|
46
46
|
private lastTtfbAnnotation;
|
|
47
|
-
private ttfbSpinnerFrame;
|
|
48
47
|
private readonly addPreviewDiffRef;
|
|
49
48
|
readonly sink: (event: OutputEvent, meta?: SubagentProgressMeta) => void;
|
|
50
49
|
constructor(opts: StreamRendererOptions);
|