apple-hig-mcp
Version:
High-performance MCP server providing instant access to Apple's Human Interface Guidelines via hybrid static/dynamic content delivery
18 lines • 678 B
TypeScript
/**
* Cross Reference Generator Service
* Single Responsibility: Generate cross-references between sections
*/
import type { ICrossReferenceGenerator } from '../interfaces/content-interfaces.js';
import type { HIGSection } from '../types.js';
export declare class CrossReferenceGeneratorService implements ICrossReferenceGenerator {
private sections;
private crossReferences;
addSection(section: HIGSection): void;
generateReferences(): Record<string, any>;
clear(): void;
private findRelatedSections;
private findBacklinks;
private generateTags;
private generateBacklinks;
}
//# sourceMappingURL=cross-reference-generator.service.d.ts.map