/** * routes/channel-profiles.ts * * Handlers for the channels.profiles.* verbs over the ChannelProfileRegistry * (../../channel-profiles). Thin verb registration: read the invocation params, * call the registry, map a ChannelProfileError to an honest wire status * (INVALID_ARGUMENT -> 400, NOT_FOUND -> 404). */ import type { GatewayMethodCatalog } from '../method-catalog.js'; import { ChannelProfileRegistry } from '../../channel-profiles/index.js'; export type ChannelProfilesGatewayService = Pick; export declare function registerChannelProfilesGatewayMethods(catalog: GatewayMethodCatalog, service: ChannelProfilesGatewayService): void; //# sourceMappingURL=channel-profiles.d.ts.map