nestjs-hot-shots
Version:
Hot-shots Module for Nest.js Framework
11 lines (10 loc) • 316 B
TypeScript
import { Tags } from 'hot-shots';
import { BaseCollector } from './base.collector';
export declare class TimingCollector extends BaseCollector {
/**
* Record value of timing by the input. Inputs can be negative.
* @param value
* @param tags
*/
record(value: number, tags?: Tags): void;
}