UNPKG

454 BTypeScriptView Raw
1export interface Device {
2 availability?: string;
3 state?: string;
4 isAvailable?: boolean;
5 name: string;
6 udid: string;
7 version?: string;
8 availabilityError?: string;
9 type?: 'simulator' | 'device' | 'catalyst';
10 booted?: boolean;
11 lastBootedAt?: string;
12}
13export interface IosProjectInfo {
14 configurations: string[];
15 name: string;
16 schemes: string[];
17 targets: string[];
18}
19//# sourceMappingURL=types.d.ts.map
\No newline at end of file