a zip code crypto-currency system good for red ONLY

serve-config.d.ts 673B

123456789101112131415161718192021222324
  1. export 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. }
  20. export declare const LOGGER_DIR = "__ion-dev-server";
  21. export declare const IONIC_LAB_URL = "/ionic-lab";
  22. export declare const IOS_PLATFORM_PATHS: string[];
  23. export declare const ANDROID_PLATFORM_PATHS: string[];