UNPKG

673 BTypeScriptView Raw
1export interface ServeConfig {
2 httpPort: number;
3 host: string;
4 hostBaseUrl: string;
5 rootDir: string;
6 wwwDir: string;
7 buildDir: string;
8 isCordovaServe: boolean;
9 launchBrowser: boolean;
10 launchLab: boolean;
11 browserToLaunch: string;
12 useLiveReload: boolean;
13 liveReloadPort: Number;
14 notificationPort: Number;
15 useServerLogs: boolean;
16 notifyOnConsoleLog: boolean;
17 useProxy: boolean;
18 devapp: boolean;
19}
20export declare const LOGGER_DIR = "__ion-dev-server";
21export declare const IONIC_LAB_URL = "/ionic-lab";
22export declare const IOS_PLATFORM_PATHS: string[];
23export declare const ANDROID_PLATFORM_PATHS: string[];