node-simctl 7.2.2 → 7.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/build/index.js +9 -17
- package/build/lib/helpers.d.ts +13 -0
- package/build/lib/helpers.d.ts.map +1 -0
- package/build/lib/helpers.js +22 -16
- package/build/lib/helpers.js.map +1 -1
- package/build/lib/logger.d.ts +4 -0
- package/build/lib/logger.d.ts.map +1 -0
- package/build/lib/logger.js +13 -19
- package/build/lib/logger.js.map +1 -1
- package/build/lib/simctl.d.ts +131 -0
- package/build/lib/simctl.d.ts.map +1 -0
- package/build/lib/simctl.js +170 -94
- package/build/lib/simctl.js.map +1 -1
- package/build/lib/subcommands/addmedia.d.ts +16 -0
- package/build/lib/subcommands/addmedia.d.ts.map +1 -0
- package/build/lib/subcommands/addmedia.js +17 -12
- package/build/lib/subcommands/addmedia.js.map +1 -1
- package/build/lib/subcommands/appinfo.d.ts +45 -0
- package/build/lib/subcommands/appinfo.d.ts.map +1 -0
- package/build/lib/subcommands/appinfo.js +47 -15
- package/build/lib/subcommands/appinfo.js.map +1 -1
- package/build/lib/subcommands/boot.d.ts +12 -0
- package/build/lib/subcommands/boot.d.ts.map +1 -0
- package/build/lib/subcommands/boot.js +47 -22
- package/build/lib/subcommands/boot.js.map +1 -1
- package/build/lib/subcommands/bootstatus.d.ts +56 -0
- package/build/lib/subcommands/bootstatus.d.ts.map +1 -0
- package/build/lib/subcommands/bootstatus.js +102 -87
- package/build/lib/subcommands/bootstatus.js.map +1 -1
- package/build/lib/subcommands/create.d.ts +34 -0
- package/build/lib/subcommands/create.d.ts.map +1 -0
- package/build/lib/subcommands/create.js +115 -65
- package/build/lib/subcommands/create.js.map +1 -1
- package/build/lib/subcommands/delete.d.ts +12 -0
- package/build/lib/subcommands/delete.d.ts.map +1 -0
- package/build/lib/subcommands/delete.js +13 -12
- package/build/lib/subcommands/delete.js.map +1 -1
- package/build/lib/subcommands/erase.d.ts +15 -0
- package/build/lib/subcommands/erase.d.ts.map +1 -0
- package/build/lib/subcommands/erase.js +19 -14
- package/build/lib/subcommands/erase.js.map +1 -1
- package/build/lib/subcommands/get_app_container.d.ts +22 -0
- package/build/lib/subcommands/get_app_container.d.ts.map +1 -0
- package/build/lib/subcommands/get_app_container.js +26 -19
- package/build/lib/subcommands/get_app_container.js.map +1 -1
- package/build/lib/subcommands/getenv.d.ts +14 -0
- package/build/lib/subcommands/getenv.d.ts.map +1 -0
- package/build/lib/subcommands/getenv.js +17 -17
- package/build/lib/subcommands/getenv.js.map +1 -1
- package/build/lib/subcommands/index.d.ts +3 -0
- package/build/lib/subcommands/index.d.ts.map +1 -0
- package/build/lib/subcommands/index.js +33 -36
- package/build/lib/subcommands/index.js.map +1 -1
- package/build/lib/subcommands/install.d.ts +15 -0
- package/build/lib/subcommands/install.d.ts.map +1 -0
- package/build/lib/subcommands/install.js +16 -12
- package/build/lib/subcommands/install.js.map +1 -1
- package/build/lib/subcommands/io.d.ts +15 -0
- package/build/lib/subcommands/io.d.ts.map +1 -0
- package/build/lib/subcommands/io.js +32 -25
- package/build/lib/subcommands/io.js.map +1 -1
- package/build/lib/subcommands/keychain.d.ts +53 -0
- package/build/lib/subcommands/keychain.d.ts.map +1 -0
- package/build/lib/subcommands/keychain.js +85 -51
- package/build/lib/subcommands/keychain.js.map +1 -1
- package/build/lib/subcommands/launch.d.ts +19 -0
- package/build/lib/subcommands/launch.d.ts.map +1 -0
- package/build/lib/subcommands/launch.js +28 -19
- package/build/lib/subcommands/launch.js.map +1 -1
- package/build/lib/subcommands/list.d.ts +120 -0
- package/build/lib/subcommands/list.d.ts.map +1 -0
- package/build/lib/subcommands/list.js +296 -138
- package/build/lib/subcommands/list.js.map +1 -1
- package/build/lib/subcommands/location.d.ts +20 -0
- package/build/lib/subcommands/location.d.ts.map +1 -0
- package/build/lib/subcommands/location.js +37 -22
- package/build/lib/subcommands/location.js.map +1 -1
- package/build/lib/subcommands/openurl.d.ts +17 -0
- package/build/lib/subcommands/openurl.d.ts.map +1 -0
- package/build/lib/subcommands/openurl.js +18 -12
- package/build/lib/subcommands/openurl.js.map +1 -1
- package/build/lib/subcommands/pbcopy.d.ts +17 -0
- package/build/lib/subcommands/pbcopy.d.ts.map +1 -0
- package/build/lib/subcommands/pbcopy.js +26 -20
- package/build/lib/subcommands/pbcopy.js.map +1 -1
- package/build/lib/subcommands/pbpaste.d.ts +17 -0
- package/build/lib/subcommands/pbpaste.d.ts.map +1 -0
- package/build/lib/subcommands/pbpaste.js +20 -16
- package/build/lib/subcommands/pbpaste.js.map +1 -1
- package/build/lib/subcommands/privacy.d.ts +55 -0
- package/build/lib/subcommands/privacy.d.ts.map +1 -0
- package/build/lib/subcommands/privacy.js +60 -18
- package/build/lib/subcommands/privacy.js.map +1 -1
- package/build/lib/subcommands/push.d.ts +25 -0
- package/build/lib/subcommands/push.d.ts.map +1 -0
- package/build/lib/subcommands/push.js +41 -24
- package/build/lib/subcommands/push.js.map +1 -1
- package/build/lib/subcommands/shutdown.d.ts +12 -0
- package/build/lib/subcommands/shutdown.d.ts.map +1 -0
- package/build/lib/subcommands/shutdown.js +47 -22
- package/build/lib/subcommands/shutdown.js.map +1 -1
- package/build/lib/subcommands/spawn.d.ts +26 -0
- package/build/lib/subcommands/spawn.d.ts.map +1 -0
- package/build/lib/subcommands/spawn.js +42 -26
- package/build/lib/subcommands/spawn.js.map +1 -1
- package/build/lib/subcommands/terminate.d.ts +15 -0
- package/build/lib/subcommands/terminate.d.ts.map +1 -0
- package/build/lib/subcommands/terminate.js +16 -12
- package/build/lib/subcommands/terminate.js.map +1 -1
- package/build/lib/subcommands/ui.d.ts +24 -0
- package/build/lib/subcommands/ui.d.ts.map +1 -0
- package/build/lib/subcommands/ui.js +32 -20
- package/build/lib/subcommands/ui.js.map +1 -1
- package/build/lib/subcommands/uninstall.d.ts +16 -0
- package/build/lib/subcommands/uninstall.d.ts.map +1 -0
- package/build/lib/subcommands/uninstall.js +17 -12
- package/build/lib/subcommands/uninstall.js.map +1 -1
- package/lib/simctl.js +13 -3
- package/lib/subcommands/addmedia.js +1 -1
- package/lib/subcommands/bootstatus.js +2 -2
- package/lib/subcommands/create.js +2 -2
- package/lib/subcommands/erase.js +1 -1
- package/lib/subcommands/keychain.js +2 -2
- package/lib/subcommands/launch.js +1 -0
- package/lib/subcommands/list.js +6 -6
- package/lib/subcommands/location.js +1 -1
- package/lib/subcommands/openurl.js +1 -1
- package/lib/subcommands/spawn.js +2 -2
- package/package.json +28 -17
|
@@ -1,24 +1,33 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
require("source-map-support/register");
|
|
9
|
-
var _lodash = _interopRequireDefault(require("lodash"));
|
|
10
|
-
var _asyncbox = require("asyncbox");
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const lodash_1 = __importDefault(require("lodash"));
|
|
7
|
+
const asyncbox_1 = require("asyncbox");
|
|
11
8
|
const commands = {};
|
|
9
|
+
/**
|
|
10
|
+
* Execute the particular application package on Simulator.
|
|
11
|
+
* It is required that Simulator is in _booted_ state and
|
|
12
|
+
* the application with given bundle identifier is already installed.
|
|
13
|
+
*
|
|
14
|
+
* @param {string} bundleId - Bundle identifier of the application,
|
|
15
|
+
* which is going to be removed.
|
|
16
|
+
* @param {number} tries [5] - The maximum number of retries before
|
|
17
|
+
* throwing an exception.
|
|
18
|
+
* @return {Promise<string>} the actual command output
|
|
19
|
+
* @throws {Error} If the corresponding simctl subcommand command
|
|
20
|
+
* returns non-zero return code.
|
|
21
|
+
* @throws {Error} If the `udid` instance property is unset
|
|
22
|
+
*/
|
|
12
23
|
commands.launchApp = async function launchApp(bundleId, tries = 5) {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
24
|
+
// @ts-ignore A string will always be returned
|
|
25
|
+
return await (0, asyncbox_1.retryInterval)(tries, 1000, async () => {
|
|
26
|
+
const { stdout } = await this.exec('launch', {
|
|
27
|
+
args: [this.requireUdid('launch'), bundleId],
|
|
28
|
+
});
|
|
29
|
+
return lodash_1.default.trim(stdout);
|
|
18
30
|
});
|
|
19
|
-
return _lodash.default.trim(stdout);
|
|
20
|
-
});
|
|
21
31
|
};
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJuYW1lcyI6WyJfbG9kYXNoIiwiX2ludGVyb3BSZXF1aXJlRGVmYXVsdCIsInJlcXVpcmUiLCJfYXN5bmNib3giLCJjb21tYW5kcyIsImxhdW5jaEFwcCIsImJ1bmRsZUlkIiwidHJpZXMiLCJyZXRyeUludGVydmFsIiwic3Rkb3V0IiwiZXhlYyIsImFyZ3MiLCJyZXF1aXJlVWRpZCIsIl8iLCJ0cmltIiwiX2RlZmF1bHQiLCJleHBvcnRzIiwiZGVmYXVsdCJdLCJzb3VyY2VzIjpbIi4uLy4uLy4uL2xpYi9zdWJjb21tYW5kcy9sYXVuY2guanMiXSwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IF8gZnJvbSAnbG9kYXNoJztcbmltcG9ydCB7IHJldHJ5SW50ZXJ2YWwgfSBmcm9tICdhc3luY2JveCc7XG5cbmNvbnN0IGNvbW1hbmRzID0ge307XG5cbi8qKlxuICogRXhlY3V0ZSB0aGUgcGFydGljdWxhciBhcHBsaWNhdGlvbiBwYWNrYWdlIG9uIFNpbXVsYXRvci5cbiAqIEl0IGlzIHJlcXVpcmVkIHRoYXQgU2ltdWxhdG9yIGlzIGluIF9ib290ZWRfIHN0YXRlIGFuZFxuICogdGhlIGFwcGxpY2F0aW9uIHdpdGggZ2l2ZW4gYnVuZGxlIGlkZW50aWZpZXIgaXMgYWxyZWFkeSBpbnN0YWxsZWQuXG4gKlxuICogQHBhcmFtIHtzdHJpbmd9IGJ1bmRsZUlkIC0gQnVuZGxlIGlkZW50aWZpZXIgb2YgdGhlIGFwcGxpY2F0aW9uLFxuICogICAgICAgICAgICAgICAgICAgICAgICAgICAgd2hpY2ggaXMgZ29pbmcgdG8gYmUgcmVtb3ZlZC5cbiAqIEBwYXJhbSB7bnVtYmVyfSB0cmllcyBbNV0gLSBUaGUgbWF4aW11bSBudW1iZXIgb2YgcmV0cmllcyBiZWZvcmVcbiAqICAgICAgICAgICAgICAgICAgICAgICAgICAgICB0aHJvd2luZyBhbiBleGNlcHRpb24uXG4gKiBAcmV0dXJuIHtQcm9taXNlPHN0cmluZz59IHRoZSBhY3R1YWwgY29tbWFuZCBvdXRwdXRcbiAqIEB0aHJvd3Mge0Vycm9yfSBJZiB0aGUgY29ycmVzcG9uZGluZyBzaW1jdGwgc3ViY29tbWFuZCBjb21tYW5kXG4gKiAgICAgICAgICAgICAgICAgcmV0dXJucyBub24temVybyByZXR1cm4gY29kZS5cbiAqIEB0aHJvd3Mge0Vycm9yfSBJZiB0aGUgYHVkaWRgIGluc3RhbmNlIHByb3BlcnR5IGlzIHVuc2V0XG4gKi9cbmNvbW1hbmRzLmxhdW5jaEFwcCA9IGFzeW5jIGZ1bmN0aW9uIGxhdW5jaEFwcCAoYnVuZGxlSWQsIHRyaWVzID0gNSkge1xuICByZXR1cm4gYXdhaXQgcmV0cnlJbnRlcnZhbCh0cmllcywgMTAwMCwgYXN5bmMgKCkgPT4ge1xuICAgIGNvbnN0IHtzdGRvdXR9ID0gYXdhaXQgdGhpcy5leGVjKCdsYXVuY2gnLCB7XG4gICAgICBhcmdzOiBbdGhpcy5yZXF1aXJlVWRpZCgnbGF1bmNoJyksIGJ1bmRsZUlkXSxcbiAgICB9KTtcbiAgICByZXR1cm4gXy50cmltKHN0ZG91dCk7XG4gIH0pO1xufTtcblxuZXhwb3J0IGRlZmF1bHQgY29tbWFuZHM7XG4iXSwibWFwcGluZ3MiOiI7Ozs7Ozs7O0FBQUEsSUFBQUEsT0FBQSxHQUFBQyxzQkFBQSxDQUFBQyxPQUFBO0FBQ0EsSUFBQUMsU0FBQSxHQUFBRCxPQUFBO0FBRUEsTUFBTUUsUUFBUSxHQUFHLENBQUMsQ0FBQztBQWdCbkJBLFFBQVEsQ0FBQ0MsU0FBUyxHQUFHLGVBQWVBLFNBQVNBLENBQUVDLFFBQVEsRUFBRUMsS0FBSyxHQUFHLENBQUMsRUFBRTtFQUNsRSxPQUFPLE1BQU0sSUFBQUMsdUJBQWEsRUFBQ0QsS0FBSyxFQUFFLElBQUksRUFBRSxZQUFZO0lBQ2xELE1BQU07TUFBQ0U7SUFBTSxDQUFDLEdBQUcsTUFBTSxJQUFJLENBQUNDLElBQUksQ0FBQyxRQUFRLEVBQUU7TUFDekNDLElBQUksRUFBRSxDQUFDLElBQUksQ0FBQ0MsV0FBVyxDQUFDLFFBQVEsQ0FBQyxFQUFFTixRQUFRO0lBQzdDLENBQUMsQ0FBQztJQUNGLE9BQU9PLGVBQUMsQ0FBQ0MsSUFBSSxDQUFDTCxNQUFNLENBQUM7RUFDdkIsQ0FBQyxDQUFDO0FBQ0osQ0FBQztBQUFDLElBQUFNLFFBQUEsR0FFYVgsUUFBUTtBQUFBWSxPQUFBLENBQUFDLE9BQUEsR0FBQUYsUUFBQSJ9
|
|
32
|
+
exports.default = commands;
|
|
33
|
+
//# sourceMappingURL=launch.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"launch.js","
|
|
1
|
+
{"version":3,"file":"launch.js","sourceRoot":"","sources":["../../../lib/subcommands/launch.js"],"names":[],"mappings":";;;;;AAAA,oDAAuB;AACvB,uCAAyC;AAEzC,MAAM,QAAQ,GAAG,EAAE,CAAC;AAEpB;;;;;;;;;;;;;GAaG;AACH,QAAQ,CAAC,SAAS,GAAG,KAAK,UAAU,SAAS,CAAE,QAAQ,EAAE,KAAK,GAAG,CAAC;IAChE,8CAA8C;IAC9C,OAAO,MAAM,IAAA,wBAAa,EAAC,KAAK,EAAE,IAAI,EAAE,KAAK,IAAI,EAAE;QACjD,MAAM,EAAC,MAAM,EAAC,GAAG,MAAM,IAAI,CAAC,IAAI,CAAC,QAAQ,EAAE;YACzC,IAAI,EAAE,CAAC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC;SAC7C,CAAC,CAAC;QACH,OAAO,gBAAC,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;IACxB,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,kBAAe,QAAQ,CAAC"}
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
export default commands;
|
|
2
|
+
export type DeviceInfo = {
|
|
3
|
+
/**
|
|
4
|
+
* - The device name.
|
|
5
|
+
*/
|
|
6
|
+
name: string;
|
|
7
|
+
/**
|
|
8
|
+
* - The device UDID.
|
|
9
|
+
*/
|
|
10
|
+
udid: string;
|
|
11
|
+
/**
|
|
12
|
+
* - The current Simulator state, for example 'booted' or 'shutdown'.
|
|
13
|
+
*/
|
|
14
|
+
state: string;
|
|
15
|
+
/**
|
|
16
|
+
* - The SDK version, for example '10.3'.
|
|
17
|
+
*/
|
|
18
|
+
sdk: string;
|
|
19
|
+
};
|
|
20
|
+
declare namespace commands {
|
|
21
|
+
/**
|
|
22
|
+
* @typedef {Object} DeviceInfo
|
|
23
|
+
* @property {string} name - The device name.
|
|
24
|
+
* @property {string} udid - The device UDID.
|
|
25
|
+
* @property {string} state - The current Simulator state, for example 'booted' or 'shutdown'.
|
|
26
|
+
* @property {string} sdk - The SDK version, for example '10.3'.
|
|
27
|
+
*/
|
|
28
|
+
/**
|
|
29
|
+
* Parse the list of existing Simulator devices to represent
|
|
30
|
+
* it as convenient mapping.
|
|
31
|
+
*
|
|
32
|
+
* @param {string?} platform - The platform name, for example 'watchOS'.
|
|
33
|
+
* @return {Promise<Record<string, any>>} The resulting mapping. Each key is platform version,
|
|
34
|
+
* for example '10.3' and the corresponding value is an
|
|
35
|
+
* array of the matching {@link DeviceInfo} instances.
|
|
36
|
+
* @throws {Error} If the corresponding simctl subcommand command
|
|
37
|
+
* returns non-zero return code.
|
|
38
|
+
*/
|
|
39
|
+
function getDevicesByParsing(platform: string | null): Promise<Record<string, any>>;
|
|
40
|
+
/**
|
|
41
|
+
* Parse the list of existing Simulator devices to represent
|
|
42
|
+
* it as convenient mapping for the particular platform version.
|
|
43
|
+
*
|
|
44
|
+
* @param {string?} forSdk - The sdk version,
|
|
45
|
+
* for which the devices list should be parsed,
|
|
46
|
+
* for example '10.3'.
|
|
47
|
+
* @param {string?} platform - The platform name, for example 'watchOS'.
|
|
48
|
+
* @return {Promise<Object|DeviceInfo[]>} If _forSdk_ is set then the list
|
|
49
|
+
* of devices for the particular platform version.
|
|
50
|
+
* Otherwise the same result as for {@link getDevicesByParsing}
|
|
51
|
+
* function.
|
|
52
|
+
* @throws {Error} If the corresponding simctl subcommand command
|
|
53
|
+
* returns non-zero return code or if no matching
|
|
54
|
+
* platform version is found in the system.
|
|
55
|
+
*/
|
|
56
|
+
function getDevices(forSdk: string | null, platform: string | null): Promise<any>;
|
|
57
|
+
/**
|
|
58
|
+
* Get the runtime for the particular platform version using --json flag
|
|
59
|
+
*
|
|
60
|
+
* @param {string} platformVersion - The platform version name,
|
|
61
|
+
* for example '10.3'.
|
|
62
|
+
* @param {string} platform - The platform name, for example 'watchOS'.
|
|
63
|
+
* @return {Promise<string>} The corresponding runtime name for the given
|
|
64
|
+
* platform version.
|
|
65
|
+
*/
|
|
66
|
+
function getRuntimeForPlatformVersionViaJson(platformVersion: string, platform?: string): Promise<string>;
|
|
67
|
+
/**
|
|
68
|
+
* Get the runtime for the particular platform version.
|
|
69
|
+
*
|
|
70
|
+
* @param {string} platformVersion - The platform version name,
|
|
71
|
+
* for example '10.3'.
|
|
72
|
+
* @param {string} platform - The platform name, for example 'watchOS'.
|
|
73
|
+
* @return {Promise<string>} The corresponding runtime name for the given
|
|
74
|
+
* platform version.
|
|
75
|
+
*/
|
|
76
|
+
function getRuntimeForPlatformVersion(platformVersion: string, platform?: string): Promise<string>;
|
|
77
|
+
/**
|
|
78
|
+
* Get the list of device types available in the current Xcode installation
|
|
79
|
+
*
|
|
80
|
+
* @return {Promise<string[]>} List of the types of devices available
|
|
81
|
+
* @throws {Error} If the corresponding simctl command fails
|
|
82
|
+
*/
|
|
83
|
+
function getDeviceTypes(): Promise<string[]>;
|
|
84
|
+
/**
|
|
85
|
+
* Get the full list of runtimes, devicetypes, devices and pairs as Object
|
|
86
|
+
*
|
|
87
|
+
* @return {Promise<Object>} Object containing device types, runtimes devices and pairs.
|
|
88
|
+
* The resulting JSON will be like:
|
|
89
|
+
* {
|
|
90
|
+
* "devicetypes" : [
|
|
91
|
+
* {
|
|
92
|
+
* "name" : "iPhone 4s",
|
|
93
|
+
* "identifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-4s"
|
|
94
|
+
* },
|
|
95
|
+
* ...
|
|
96
|
+
* ],
|
|
97
|
+
* "runtimes" : [
|
|
98
|
+
* {
|
|
99
|
+
* "version" : '13.0',
|
|
100
|
+
* "bundlePath" : '/Applications/Xcode11beta4.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime',
|
|
101
|
+
* "isAvailable" : true,
|
|
102
|
+
* "name" : 'iOS 13.0',
|
|
103
|
+
* "identifier" : 'com.apple.CoreSimulator.SimRuntime.iOS-13-0',
|
|
104
|
+
* "buildversion" : '17A5534d'
|
|
105
|
+
* },
|
|
106
|
+
* ...
|
|
107
|
+
* },
|
|
108
|
+
* "devices" :
|
|
109
|
+
* {
|
|
110
|
+
* 'com.apple.CoreSimulator.SimRuntime.iOS-13-0': [ [Object], [Object] ] },
|
|
111
|
+
* ...
|
|
112
|
+
* },
|
|
113
|
+
* "pairs" : {} }
|
|
114
|
+
*
|
|
115
|
+
* }
|
|
116
|
+
* @throws {Error} If the corresponding simctl command fails
|
|
117
|
+
*/
|
|
118
|
+
function list(): Promise<any>;
|
|
119
|
+
}
|
|
120
|
+
//# sourceMappingURL=list.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"list.d.ts","sourceRoot":"","sources":["../../../lib/subcommands/list.js"],"names":[],"mappings":";;;;;UASc,MAAM;;;;UACN,MAAM;;;;WACN,MAAM;;;;SACN,MAAM;;;IALpB;;;;;;OAMG;IAEH;;;;;;;;;;OAUG;IACH,oFA4DC;IAED;;;;;;;;;;;;;;;OAeG;IACH,kFAmEC;IAED;;;;;;;;OAQG;IACH,0GAYC;IAED;;;;;;;;OAQG;IACH,mGAoBC;IAED;;;;;OAKG;IACH,6CAqBC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAiCG;IACH,8BASC"}
|