UNPKG

@krauters/debuggable

Version:

A TypeScript utility that automatically adds detailed debug logs before and after method calls in classes, simplifying the tracking of execution flow and troubleshooting.

8 lines 280 B
import type { Logger } from './structures'; export declare class DurationTracker { private startTimes; constructor(log?: Logger); end(key: string): number | undefined; start(key: string, withSeed?: boolean): string; } //# sourceMappingURL=duration-tracker.d.ts.map