UNPKG

@promster/metrics

Version:

Metrics utilities used by all other server integrations

18 lines (17 loc) 300 B
declare class Timing { #private; static NS_PER_SEC: bigint; constructor(); value(): { seconds: undefined; } | { seconds: number; }; reset(): this; end(): this; } declare const timing: { start(): Timing; }; export default timing; export { Timing };