mirror of
https://github.com/jarrodwatts/claude-hud.git
synced 2026-04-21 18:52:40 +00:00
7 lines
286 B
TypeScript
7 lines
286 B
TypeScript
import type { StdinData } from './types.js';
|
|
export type SpeedTrackerDeps = {
|
|
homeDir: () => string;
|
|
now: () => number;
|
|
};
|
|
export declare function getOutputSpeed(stdin: StdinData, overrides?: Partial<SpeedTrackerDeps>): number | null;
|
|
//# sourceMappingURL=speed-tracker.d.ts.map
|