eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
11 lines (10 loc) • 642 B
TypeScript
import type { Hook } from "#compiled/@workflow/world/index.js";
export * from "#compiled/@workflow/core/runtime.js";
export type { StartOptionsWithoutDeploymentId, WorkflowFunction, WorkflowMetadata, } from "#compiled/@workflow/core/runtime/start.js";
/**
* Reads a hook without decrypting metadata or resolving an encryption key.
* Metadata is excluded from the return type; use `getHookByToken` to read it.
*/
export declare function getRawHookByToken(token: string): Promise<Omit<Hook, "metadata">>;
/** Installs a World across source and vendored Workflow package identities. */
export declare function setWorld(world: unknown): void;