import { runLaunchCommand } from "./launch"; /** `jeo resume [id]` — resume the latest (or a specific) interactive session. */ export async function runResumeCommand(args: string[] = []): Promise { return runLaunchCommand(["--resume", ...args]); }