| 19 | |
| 20 | /** Result of binary resolution, including the source for telemetry. */ |
| 21 | export interface BinaryResolutionResult { |
| 22 | /** The resolved binary path. */ |
| 23 | binaryPath: string; |
| 24 | /** Which resolution method was used. */ |
| 25 | source: BinaryResolutionSource; |
| 26 | /** Whether checksum validation passed (undefined if not checked). */ |
| 27 | checksumValid?: boolean; |
| 28 | } |
| 29 | |
| 30 | /** |
| 31 | * Dependencies that can be injected for testing. |
nothing calls this directly
no outgoing calls
no test coverage detected