/** * Parsing for the explicit `jensen resume ` command. * * Kept separate from `main.ts` so the parser can be tested without pulling in * the full CLI/agent runtime. Session IDs are treated as opaque strings; this * module only decides whether the command was requested and what ID was given. */ export type ResumeCommandParse = { kind: "none"; } | { kind: "help"; } | { kind: "missing"; } | { kind: "resume"; sessionId: string; }; /** * Parse the explicit `resume ` command. * * Pure parsing only; the caller is responsible for emitting help/errors and for * stripping the subcommand from the generic argument stream. */ export declare function parseResumeCommand(args: string[]): ResumeCommandParse; //# sourceMappingURL=resume-command.d.ts.map