| 96 | } |
| 97 | |
| 98 | export interface MeasurementCheck { |
| 99 | name: string; |
| 100 | command: string; |
| 101 | measured: string; |
| 102 | /** Numeric form of `measured`, when it parses as a finite number. */ |
| 103 | measuredNumeric: number | null; |
| 104 | claim: MeasurementClaim | null; |
| 105 | outcome: |
| 106 | | "match" |
| 107 | | "claim-missing" |
| 108 | | "value-mismatch" |
| 109 | | "command-failed" |
| 110 | | "parse-failed"; |
| 111 | driftFraction: number | null; |
| 112 | detail: string; |
| 113 | } |
| 114 | |
| 115 | export interface MeasurementComparisonInput { |
| 116 | spec: MeasurementSpec; |
nothing calls this directly
no outgoing calls
no test coverage detected