import { supportedPlatforms } from './config/supportedPlatforms'; type ObjectValues = T[keyof T]; export type ApplePlatform = ObjectValues; export interface BuilderCommand { /** * Lowercase name of the platform. * Example: 'ios', 'visionos' */ platformName: ApplePlatform; } export {}; //# sourceMappingURL=types.d.ts.map