/** * Code Domain Adapter — calls the live SHIP API /v2/score endpoint. * This is the working, production domain adapter. */ import type { IDomainAdapter, IScoringInput, IScoringConfig, IReliabilityScore } from '../core/types.js'; export declare class CodeDomainAdapter implements IDomainAdapter { readonly domain = "code"; readonly name = "Code Reliability (SHIP API)"; validate(input: IScoringInput): { valid: boolean; errors: string[]; }; score(input: IScoringInput, config: IScoringConfig): Promise; } //# sourceMappingURL=code.d.ts.map