UNPKG

eve

Version:

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

16 lines (15 loc) 672 B
import type { Command } from "#compiled/commander/index.js"; import type { CliApplicationContext } from "#cli/application-command.js"; import type { ApplicationBuildOptions } from "#internal/nitro/host/types.js"; export type BuildHost = (appRoot: string, options: ApplicationBuildOptions) => Promise<string>; interface BuildCommandLogger { log(message: string): void; } /** Registers the production application build command. */ export declare function registerBuildCommand(input: { readonly applicationContext: CliApplicationContext; readonly buildHost?: BuildHost; readonly logger: BuildCommandLogger; readonly program: Command; }): void; export {};