MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / BinaryResolutionResult

Interface BinaryResolutionResult

vscode-extension/src/utils/binaryResolver.ts:21–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19
20/** Result of binary resolution, including the source for telemetry. */
21export 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.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected