1 | import { ExpoConfig } from '@expo/config';
|
2 | import { StartDevServerOptions } from '../internal';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export declare function broadcastMessage(method: 'reload' | 'devMenu' | 'sendDevCommand', params?: Record<string, any> | undefined): void;
|
11 | export declare function startWebpackAsync(projectRoot: string, { exp, ...options }?: StartDevServerOptions & {
|
12 | exp?: ExpoConfig;
|
13 | }): Promise<void>;
|
14 | export declare function startAsync(projectRoot: string, { exp, ...options }?: StartDevServerOptions & {
|
15 | exp?: ExpoConfig;
|
16 | }, verbose?: boolean): Promise<ExpoConfig>;
|
17 | export declare function stopAsync(projectRoot: string): Promise<void>;
|