@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
33 lines • 690 B
TypeScript
/**
* Platform compatibility related types
*/
/**
* Platform availability information
*/
export interface PlatformAvailability {
platform: string;
introduced?: string;
deprecated?: string;
obsoleted?: string;
message?: string;
renamed?: string;
current?: string;
beta?: boolean;
}
/**
* Platform compatibility result
*/
export interface PlatformCompatibilityResult {
api: {
title: string;
url: string;
type?: string;
};
platforms: PlatformAvailability[];
relatedApis?: Array<{
title: string;
url: string;
platforms: PlatformAvailability[];
}>;
}
//# sourceMappingURL=platform.d.ts.map