1 | import { OnInstallProgressCallback } from './native-run/ios/lib';
|
2 | import type { DeviceValues } from './native-run/ios/lib';
|
3 | export declare function isEnabled(): boolean;
|
4 | export declare function getConnectedDevices(): Promise<DeviceValues[]>;
|
5 | export declare function runOnDevice({ udid, appPath, bundleId, waitForApp, deltaPath, onProgress, }: {
|
6 | udid: string;
|
7 | appPath: string;
|
8 | bundleId: string;
|
9 | waitForApp: boolean;
|
10 | deltaPath: string;
|
11 | onProgress: OnInstallProgressCallback;
|
12 | }): Promise<void>;
|