eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
8 lines (7 loc) • 358 B
TypeScript
import type { ActivitySinkV1 } from "#channel/types.js";
import type { ActivityEventV1 } from "#protocol/activity.js";
/** Submits activity to its sink without affecting the observed session. */
export declare function submitActivity(input: {
readonly sink: ActivitySinkV1 | undefined;
readonly events: readonly ActivityEventV1[];
}): Promise<void>;