@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 • 470 B
TypeScript
/**
* Documentation updates related types
*/
/**
* Documentation update entry
*/
export interface DocumentationUpdate {
title: string;
href?: string;
eyebrow?: string;
abstract?: string;
category?: 'wwdc' | 'technology' | 'release-notes';
year?: string;
isBeta?: boolean;
}
/**
* Updates index section
*/
export interface UpdatesIndexSection {
title: string;
items: DocumentationUpdate[];
}
//# sourceMappingURL=updates.d.ts.map