/** * routes/ci.ts * * Handlers for the ci.* gateway verbs over the CiWatchService (../../ci-watch). * Thin verb registration: read params, call the service, map CiWatchError to an * honest wire status (INVALID_ARGUMENT -> 400, NOT_FOUND -> 404). */ import type { GatewayMethodCatalog } from '../method-catalog.js'; import { type CiWatchService } from '../../ci-watch/index.js'; export type CiWatchGatewayService = Pick; export declare function registerCiGatewayMethods(catalog: GatewayMethodCatalog, service: CiWatchGatewayService): void; //# sourceMappingURL=ci.d.ts.map