/** * Your context backend port * */ export declare const HOST_BACKEND_PORT_1: any; /** * Angular website url with normal/nodejs backend * */ export declare const FRONTEND_NORMAL_APP_PORT_1: any; /** * @deprecated use FRONTEND_NORMAL_APP_PORT instead */ export declare const CLIENT_DEV_NORMAL_APP_PORT_1: any; /** * Angular website url with websql backend * */ export declare const FRONTEND_WEBSQL_APP_PORT_1: any; /** * @deprecated use FRONTEND_WEBSQL_APP_PORT instead */ export declare const CLIENT_DEV_WEBSQL_APP_PORT_1: any; /** * Electron/angular website url for electron app purpose (ipc backend) */ export declare const FRONTEND_NORMAL_ELECTRON_PORT_1 = 4224; /** * Backend url - use as "host" inside your context * */ export declare const HOST_URL_1: string; /** * Frontend host url - use as "frontendHost" inside your context * */ export declare const FRONTEND_HOST_URL_1: string; /** * Frontend electron host url - use in app.electron.ts with win.loadURL(FRONTEND_HOST_URL_ELECTRON); */ export declare const FRONTEND_HOST_URL_ELECTRON_1: string; /** * Your context backend port * @deprecated use HOST_BACKEND_PORT_n instead */ export declare const HOST_BACKEND_PORT: any; /** * Angular website url with normal/nodejs backend * @deprecated use FRONTEND_NORMAL_APP_PORT_n instead */ export declare const FRONTEND_NORMAL_APP_PORT: any; /** * @deprecated use FRONTEND_NORMAL_APP_PORT instead */ export declare const CLIENT_DEV_NORMAL_APP_PORT: any; /** * Angular website url with websql backend * @deprecated use FRONTEND_WEBSQL_APP_PORT_n instead */ export declare const FRONTEND_WEBSQL_APP_PORT: any; /** * @deprecated use FRONTEND_WEBSQL_APP_PORT instead */ export declare const CLIENT_DEV_WEBSQL_APP_PORT: any; /** * Electron/angular website url for electron app purpose (ipc backend) */ export declare const FRONTEND_NORMAL_ELECTRON_PORT = 4224; /** * Backend url - use as "host" inside your context * @deprecated use HOST_URL_n instead */ export declare const HOST_URL: string; /** * Frontend host url - use as "frontendHost" inside your context * @deprecated use FRONTEND_HOST_URL_n instead */ export declare const FRONTEND_HOST_URL: string; /** * Frontend electron host url - use in app.electron.ts with win.loadURL(FRONTEND_HOST_URL_ELECTRON); */ export declare const FRONTEND_HOST_URL_ELECTRON: string; export declare const HOST_CONFIG: { /** Relative file path for context */ /** Name of context (var, let, const variable) inside *.ts file. */ StaticColumnsContext: { activeContext: string; contextName: string; hostPortNumber: number; host: string; frontendHostPortNumber: number; frontendHost: string; appId: string; }; };