import type { CommandSpec } from "#environments/executor"; export interface EnvironmentAdapter { path(path: string): string; command(argv: string[], target?: string): CommandSpec; lifecycleCommand?(action: "status" | "start" | "stop"): CommandSpec; }