@kimsungwhee/apple-docs-mcp
Version:
MCP server for Apple Developer Documentation - Search iOS/macOS/SwiftUI/UIKit docs, WWDC videos, Swift/Objective-C APIs & code examples in Claude, Cursor & AI assistants
64 lines • 1.16 kB
TypeScript
/**
* Section types for Apple documentation
*/
/**
* Base section interface
*/
interface BaseSection {
title: string;
identifiers: string[];
}
/**
* Topic section in documentation
*/
export interface TopicSection extends BaseSection {
abstract?: unknown[];
}
/**
* See Also section
*/
export interface SeeAlsoSection extends BaseSection {
generated?: boolean;
}
/**
* Relationship section
*/
export interface RelationshipSection extends BaseSection {
type?: string;
kind?: string;
}
/**
* Documentation update section
*/
export interface UpdateSection {
title: string;
items: UpdateItem[];
}
/**
* Documentation update item
*/
export interface UpdateItem {
title: string;
href?: string;
eyebrow?: string;
abstract?: string;
}
/**
* Technology overview section
*/
export interface TechnologyOverviewSection {
title: string;
href?: string;
eyebrow?: string;
items?: TechnologyOverviewItem[];
}
/**
* Technology overview item
*/
export interface TechnologyOverviewItem {
title: string;
href?: string;
abstract?: string;
}
export {};
//# sourceMappingURL=sections.d.ts.map