UNPKG

nestjs-hot-shots

Version:
11 lines (10 loc) 338 B
import { Tags } from 'hot-shots'; import { BaseCollector } from './base.collector'; export declare class UpDownCounterCollector extends BaseCollector { /** * Increment or decrement value of counter by the input. Inputs can be negative. * @param value * @param tags */ add(value?: number, tags?: Tags): void; }