UNPKG

eve

Version:

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

13 lines (12 loc) 702 B
import type { Nitro } from "nitro/types"; import type { NitroBuildSurface, PreparedApplicationHost } from "#internal/nitro/host/types.js"; /** * Wires eve's package-owned app, channel, workflow inspection, dev-control, * and Workflow SDK endpoints into one development Nitro candidate. */ export declare function configureDevelopmentNitroRoutes(nitro: Nitro, preparedHost: PreparedApplicationHost): Promise<void>; /** * Wires the subset of eve's package-owned endpoints that belong to the given * build surface into a production Nitro host. */ export declare function configureProductionNitroRoutes(nitro: Nitro, preparedHost: PreparedApplicationHost, surface: NitroBuildSurface): Promise<void>;