/** * Shared constants for the ev runtime. */ /** Default framework server base path. */ export declare const DEFAULT_SERVER_BASE_PATH = "/__evjs"; /** Default server function endpoint, resolved relative to transport base URLs. */ export declare const DEFAULT_ENDPOINT = "__evjs/fn"; /** * Server function endpoint configured by the application build. * * Bundlers replace `__EVJS_FUNCTION_ENDPOINT__` at build time. When the runtime * package is used directly, the undeclared global falls back to the default. */ export declare function getFunctionEndpoint(): string; /** Default HTTP status code for server function errors. */ export declare const DEFAULT_ERROR_STATUS = 500; //# sourceMappingURL=constants.d.ts.map