You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
516 B

import { OnInstallProgressCallback } from './native-run/ios/lib';
import type { DeviceValues } from './native-run/ios/lib';
export declare function isEnabled(): boolean;
export declare function getConnectedDevices(): Promise<DeviceValues[]>;
export declare function runOnDevice({ udid, appPath, bundleId, waitForApp, deltaPath, onProgress, }: {
udid: string;
appPath: string;
bundleId: string;
waitForApp: boolean;
deltaPath: string;
onProgress: OnInstallProgressCallback;
}): Promise<void>;