// Version checking interface import type { VersionCheckResult } from '@/types/index.js'; export interface IVersionChecker { run(): Promise; checkSpecific(fontIds: string[]): Promise; updateCache(versions: Record): Promise; getCurrentVersions(): Promise>; }