/** * Projects Handler Module * * Handles the local projects discovery UI at root path when no project is selected. * Shows a list of discovered projects in standard directories. * * @module server/runtime-handler/projects-handler */ import type { HandlerContext } from "../handlers/types.js"; import type { ParsedDomain } from "../utils/domain-parser.js"; /** * Check if the request should be handled by the projects discovery UI. */ export declare function shouldHandleProjectsUI(req: Request, pathname: string, projectSlug: string | undefined, parsedDomain: ParsedDomain): boolean; /** * Handle the projects discovery UI requests. * Returns a response or null if not handled. */ export declare function handleProjectsRequest(req: Request, url: URL, ctx: HandlerContext): Promise; //# sourceMappingURL=projects-handler.d.ts.map