eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
9 lines (8 loc) • 431 B
TypeScript
import type { CompiledAgentManifest } from "#compiler/manifest.js";
interface ChannelInstrumentationTypesSourceInput {
readonly manifest: CompiledAgentManifest;
readonly typesPath: string;
}
export declare const CHANNEL_INSTRUMENTATION_TYPES_FILE_NAME = "channel-instrumentation-types.d.ts";
export declare function createChannelInstrumentationTypesSource(input: ChannelInstrumentationTypesSourceInput): string;
export {};