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

23 lines 408 B
/** * Sample code related types */ /** * Sample code entry */ export interface SampleCode { title: string; href?: string; eyebrow?: string; abstract?: string; framework?: string; isBeta?: boolean; isFeatured?: boolean; } /** * Sample code section */ export interface SampleCodeSection { title: string; items: SampleCode[]; } //# sourceMappingURL=sample-code.d.ts.map