UNPKG

eve

Version:

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

19 lines (18 loc) 672 B
export interface EnsureVercelOutputConfigResult { readonly agents: readonly EnsureVercelOutputConfigAgentResult[]; } export interface EnsureVercelOutputConfigAgentInput { readonly appRoot: string; readonly buildCommand: string; readonly name?: string; readonly publicRoutePrefix: string; readonly servicePrefix: string; } export interface EnsureVercelOutputConfigAgentResult { readonly name?: string; readonly servicePrefix: string; } export declare function ensureEveVercelOutputConfig(input: { readonly agents: readonly EnsureVercelOutputConfigAgentInput[]; readonly nextRoot: string; }): Promise<EnsureVercelOutputConfigResult>;