eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
12 lines (11 loc) • 480 B
TypeScript
import type { ChannelAdapter, ChannelInstrumentationMetadata } from "#channel/adapter.js";
export interface ChannelInstrumentationProjection {
readonly channelType?: string;
readonly kind: string;
readonly metadata: ChannelInstrumentationMetadata;
}
export declare function buildChannelInstrumentationProjection(input: {
readonly adapter: ChannelAdapter;
readonly channelName?: string;
readonly existingKind?: string;
}): ChannelInstrumentationProjection;