UNPKG

eve

Version:

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

5 lines (4 loc) 302 B
import type { ChannelAdapter } from "#channel/adapter.js"; import type { Runtime } from "#channel/types.js"; import type { SendFn } from "#channel/routes.js"; export declare function createSendFn<TState = undefined>(runtime: Runtime, adapter: ChannelAdapter<any>, channelName: string): SendFn<TState>;