| 2 | // Implements spec/10 §4 (Telemetry Hooks) |
| 3 | |
| 4 | interface Counter { |
| 5 | type: "counter"; |
| 6 | value: number; |
| 7 | labels: Record<string, string>; |
| 8 | } |
| 9 | |
| 10 | interface Histogram { |
| 11 | type: "histogram"; |
nothing calls this directly
no outgoing calls
no test coverage detected