UNPKG

eve

Version:

Filesystem-first framework for durable backend AI agents that run anywhere.

11 lines (10 loc) 445 B
import type { ChannelAdapter, ChannelInstrumentationMetadata } from "#channel/adapter.js"; export interface ChannelInstrumentationProjection { readonly kind: string; readonly metadata: ChannelInstrumentationMetadata; } export declare function buildChannelInstrumentationProjection(input: { readonly adapter: ChannelAdapter; readonly channelName?: string; readonly existingKind?: string; }): ChannelInstrumentationProjection;