UNPKG

eve

Version:

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

10 lines (9 loc) 531 B
import type { ContextContainer } from "#context/container.js"; import type { UnstampedMessageStreamEvent } from "#protocol/message.js"; import type { ResolvedDynamicConnectionResolver } from "#runtime/types.js"; /** Resolves and replaces the dynamic connection set for one lifecycle scope. */ export declare function dispatchDynamicConnectionEvent(input: { readonly ctx: ContextContainer; readonly resolvers: readonly ResolvedDynamicConnectionResolver[]; readonly event: UnstampedMessageStreamEvent; }): Promise<void>;