UNPKG

eve

Version:

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

13 lines (12 loc) 505 B
import type { World } from "#compiled/@workflow/world/index.js"; export interface ConfiguredWorkflowWorldModule { readonly [name: string]: unknown; readonly default?: unknown; } export interface InstallConfiguredWorkflowWorldInput { readonly module: ConfiguredWorkflowWorldModule | (() => unknown); } /** * Installs a Workflow world selected by the compiled agent config. */ export declare function installConfiguredWorkflowWorld(input: InstallConfiguredWorkflowWorldInput): Promise<World>;