@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
18 lines • 485 B
TypeScript
/**
* Technology overview related types
*/
import type { TechnologyOverviewItem, TechnologyOverviewSection } from '../sections.js';
export type { TechnologyOverviewItem, TechnologyOverviewSection };
/**
* Technology overview entry
*/
export interface TechnologyOverview {
title: string;
href?: string;
eyebrow?: string;
abstract?: string;
category?: string;
platform?: string;
items?: TechnologyOverviewItem[];
}
//# sourceMappingURL=technology.d.ts.map