nestjs-hot-shots
Version:
Hot-shots Module for Nest.js Framework
11 lines (10 loc) • 328 B
TypeScript
import { BaseCollector } from './base.collector';
import { Tags } from '../interfaces';
export declare class CounterCollector extends BaseCollector {
/**
* Increment value of counter by the input. Inputs must not be negative.
* @param value
* @param tags
*/
add(value?: number, tags?: Tags): void;
}