apple-dev-mcp
Version:
Complete Apple development guidance: Human Interface Guidelines (design) + Technical Documentation for iOS, macOS, watchOS, tvOS, and visionOS
27 lines • 863 B
TypeScript
/**
* HIG Discovery Service
*
* Comprehensive discovery service that identifies all Apple HIG sections
* across all platforms using known URL patterns and structures.
*/
import type { HIGSection, ApplePlatform } from '../../types.js';
export declare class ContentHIGDiscoveryService {
private readonly baseUrl;
/**
* Discover all HIG sections using comprehensive known structure
*/
discoverSections(): Promise<HIGSection[]>;
private getUniversalSections;
private getPlatformSpecificSections;
private addSections;
private slugToTitle;
/**
* Get platform-specific content directory path
*/
getPlatformDirectory(platform: ApplePlatform): string;
/**
* Generate filename for a section
*/
generateFilename(section: HIGSection): string;
}
//# sourceMappingURL=hig-discovery.service.d.ts.map