(value: string)
| 146 | } |
| 147 | |
| 148 | function isVerification(value: string): value is Verification { |
| 149 | return (VERIFICATION_VALUES as readonly string[]).includes(value); |
| 150 | } |
| 151 | |
| 152 | function mapLegacyVerdict(raw: string): Verification | null { |
| 153 | const normalized = normalizeEnumValue(raw); |
no outgoing calls
no test coverage detected