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.

15 lines
457 B

import { ExpoConfig } from '@expo/config-types';
declare type StartOptions = {
isWebSocketsEnabled?: boolean;
isRemoteReloadingEnabled?: boolean;
devClient?: boolean;
reset?: boolean;
nonInteractive?: boolean;
nonPersistent?: boolean;
maxWorkers?: number;
webOnly?: boolean;
platforms?: ExpoConfig['platforms'];
};
export declare function startAsync(projectRoot: string, options: StartOptions): Promise<void>;
export {};