import type { ChannelInstance } from './channel.instance'; import type { EntryOwnerRef } from '../common'; /** * A row in the channel registry's index. */ export interface IndexedChannel { /** The channel instance */ instance: ChannelInstance; /** Owner of this channel entry */ owner: EntryOwnerRef; /** The resolved MCP-safe name */ resolvedName: string; } //# sourceMappingURL=channel.types.d.ts.map