eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
6 lines (5 loc) • 517 B
TypeScript
import type { CompiledDynamicConnectionDefinition } from "#compiler/manifest.js";
import type { CompiledModuleMap } from "#compiler/module-map.js";
import type { ResolvedDynamicConnectionResolver } from "#runtime/types.js";
/** Reattaches live event handlers for one compiled dynamic connection source. */
export declare function resolveDynamicConnectionDefinition(definition: CompiledDynamicConnectionDefinition, moduleMap: CompiledModuleMap, nodeId: string | undefined): Promise<ResolvedDynamicConnectionResolver>;