We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f9a923 commit 0f7ccb3Copy full SHA for 0f7ccb3
lib/declarations.ts
@@ -35,6 +35,7 @@ interface IDevice {
35
runtimeVersion: string;
36
state?: string;
37
rawDevice?: any; // NodObjC wrapper to device
38
+ platform: string;
39
}
40
41
interface ISkipErrorComposition {
@@ -103,4 +104,5 @@ interface IOptions {
103
104
sdkVersion?: string;
105
sdk?: string;
106
device?: string;
107
+ platform?: string;
108
lib/simctl.ts
@@ -134,6 +134,7 @@ export class Simctl implements ISimctl {
134
fullId: "com.apple.CoreSimulator.SimDeviceType." + lineMatch[1],
135
runtimeVersion: sdk,
136
state: lineMatch[3],
137
+ platform: match[1],
138
});
139
140
0 commit comments