(value: number, attributes?: TAttributes, context?: unknown)
| 17 | |
| 18 | export interface Counter<TAttributes extends Attributes = Attributes> { |
| 19 | add(value: number, attributes?: TAttributes, context?: unknown): void; |
| 20 | } |
| 21 | |
| 22 | export interface Histogram<TAttributes extends Attributes = Attributes> { |
no outgoing calls