MCPcopy
hub / github.com/codeaashu/claude-code / markTimeToInteractive

Function markTimeToInteractive

web/lib/performance/metrics.ts:116–120  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

114
115/** Call when the chat input becomes interactive. */
116export function markTimeToInteractive(): void {
117 if (typeof performance === "undefined") return;
118 const value = performance.now();
119 report({ name: "time_to_interactive", value });
120}
121
122/** Call when the first message bubble finishes rendering. */
123export function markFirstMessageRender(): void {

Callers

nothing calls this directly

Calls 1

reportFunction · 0.85

Tested by

no test coverage detected