eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
10 lines (9 loc) • 429 B
TypeScript
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, and Workflow
* SDK endpoints into one Nitro host instance.
*/
export declare function configureNitroRoutes(nitro: Nitro, preparedHost: PreparedApplicationHost, input: {
surface: NitroBuildSurface;
}): Promise<void>;