UNPKG

506 BTypeScriptView Raw
1export declare function waitForSimulatorAppToStart(): Promise<boolean>;
2/**
3 * I think the app can be open while no simulators are booted.
4 */
5export declare function isSimulatorAppRunningAsync(): Promise<boolean>;
6export declare function ensureSimulatorAppRunningAsync({ udid }: {
7 udid?: string;
8}): Promise<void>;
9export declare function openSimulatorAppAsync({ udid }: {
10 udid?: string;
11}): Promise<void>;
12export declare function killAllAsync(): Promise<import("@expo/spawn-async").SpawnResult>;