/** * This file contains constants used throughout the project. * @module constants **/ /** * Collection of status messages used in the application. */ export declare const STATUS_MESSAGE: { 404: string; 500: string; }; /** *Variables used to determine if the app is running on Bun */ export declare const IS_BUN: boolean; /** * Directory used for storing assets. */ export declare const RESOLVED_ASSETS_DIR = "assets"; /** * Directory used for storing vendor assets. * This is a subdirectory of the assets directory. */ export declare const RESOLVED_ASSETS_VENDORS_DIR: string; /** * Base paths for generated project files. */ export declare const GENERATED_BASE_PATHS: { readonly types: "node_modules/@types"; readonly cache: "cache"; }; export declare const DEFAULT_ECOPAGES_PORT = 3000; export declare const DEFAULT_ECOPAGES_HOSTNAME = "localhost"; /** * Default directory used for deployable output. */ export declare const DEFAULT_ECOPAGES_DIST_DIR = "dist"; /** * Default internal working directory used for runtime-only artifacts. * * @remarks * This directory is a local tool workspace and is not intended for deployment. * It owns transpiled server modules, runtime manifests, and processor caches * so the export directory can remain a clean deployable tree. */ export declare const DEFAULT_ECOPAGES_WORK_DIR = ".eco";