/** * routes/checkin.ts * * Handlers for the checkin.* gateway verbs over the CheckinService * (../../checkin). Thin verb registration: read the invocation params, call the * service, return its result. */ import type { GatewayMethodCatalog } from '../method-catalog.js'; import type { CheckinService } from '../../checkin/index.js'; export type CheckinGatewayService = Pick; export declare function registerCheckinGatewayMethods(catalog: GatewayMethodCatalog, service: CheckinGatewayService): void; //# sourceMappingURL=checkin.d.ts.map