export type AngularHandlerCall = { /** File the call lives in. */ sourceFile: string; /** Manifest key extracted from `pagePath: asset(manifest, "Foo")`. */ manifestKey: string; /** Mount path from the surrounding `.get("/path", ...)` / `.post(...)` * Elysia chain. `null` when the call isn't directly inside such a * registration (rare but possible — e.g. inside a helper function). */ mountPath: string | null; }; /** Walk every TypeScript file under `projectRoot` and return all * `handleAngularPageRequest({...})` calls found. */ export declare const scanAngularHandlerCalls: (projectRoot: string) => AngularHandlerCall[];