| 203 | } |
| 204 | |
| 205 | interface MetricObjectWithValues<T extends MetricValue<string>> |
| 206 | extends MetricObject { |
| 207 | values: T[]; |
| 208 | } |
| 209 | |
| 210 | type MetricValue<T extends string> = { |
| 211 | value: number; |
nothing calls this directly
no outgoing calls
no test coverage detected