eve
Version:
Filesystem-first framework for durable backend AI agents that run anywhere.
13 lines (12 loc) • 401 B
TypeScript
import type { Command } from "#compiled/commander/index.js";
interface ProjectCommandLogger {
error(message: string): void;
log(message: string): void;
}
/** Registers project-level Vercel commands without eagerly loading their flows. */
export declare function registerProjectCommands(input: {
program: Command;
logger: ProjectCommandLogger;
appRoot: string;
}): void;
export {};