@react-native-community/cli-platform-ios
Version:
This package is part of the [React Native CLI](../../README.md). It contains commands for managing iOS part of React Native app.
19 lines • 454 B
TypeScript
export interface Device {
availability?: string;
state?: string;
isAvailable?: boolean;
name: string;
udid: string;
version?: string;
availabilityError?: string;
type?: 'simulator' | 'device' | 'catalyst';
booted?: boolean;
lastBootedAt?: string;
}
export interface IosProjectInfo {
configurations: string[];
name: string;
schemes: string[];
targets: string[];
}
//# sourceMappingURL=types.d.ts.map