/** * @fileoverview SkillsmithApiClient.toSkill() implementation. * @module @skillsmith/core/api/client.toSkill * @see client.toSkill.test.ts (SMI-5897 C-15 — security-status field derivation coverage) * @see client.health.ts / client.private-registry.ts — the existing * companion-module convention used to keep client.ts under the 500-line * standard. * * Pure mapping function extracted from client.ts — no instance state is * needed (it never reads `this`), so it lives standalone rather than as an * inline static method body. */ import type { Skill } from '../types/skill.js'; import type { ApiSearchResult } from './client.types.js'; export declare function toSkillImpl(result: ApiSearchResult): Skill; //# sourceMappingURL=client.toSkill.d.ts.map