import { supportedPlatforms } from '@react-native-community/cli-config-apple'; type ObjectValues = T[keyof T]; export type ApplePlatform = ObjectValues; export interface Device { name: string; udid: string; state?: string; availability?: string; isAvailable?: boolean; version?: string; sdk?: string; availabilityError?: string; type?: DeviceType; lastBootedAt?: string; } export type DeviceType = 'simulator' | 'device' | 'catalyst'; export interface IosInfo { name: string; schemes?: string[]; configurations?: string[]; targets?: string[]; } export interface BuilderCommand { /** * Lowercase name of the platform. * Example: 'ios', 'visionos' */ platformName: ApplePlatform; } export {}; //# sourceMappingURL=types.d.ts.map