@expo/xdl
Version:
The Expo Development Library
13 lines (12 loc) • 424 B
TypeScript
/// <reference types="node" />
import { ProjectTarget } from '@expo/config';
export declare type StartOptions = {
devClient?: boolean;
reset?: boolean;
nonInteractive?: boolean;
nonPersistent?: boolean;
maxWorkers?: number;
webOnly?: boolean;
target?: ProjectTarget;
};
export declare function startDevServerAsync(projectRoot: string, startOptions: StartOptions): Promise<import("http").Server>;