UNPKG

@expo/xdl

Version:
13 lines (12 loc) 424 B
/// <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>;