UNPKG

@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

37 lines 763 B
/** * Content section types for Apple documentation */ export interface ContentSection { kind: string; content?: unknown[]; declarations?: Array<{ tokens?: Array<{ text?: string; }>; }>; parameters?: Array<{ name?: string; content?: Array<{ inlineContent?: Array<{ text?: string; }>; }>; }>; } export interface ContentItem { type: string; text?: string; inlineContent?: Array<{ type: string; text?: string; }>; items?: unknown[]; } export interface ListItem { content?: Array<{ inlineContent?: Array<{ text?: string; }>; }>; } //# sourceMappingURL=content-sections.d.ts.map