TypeScript · 427 bytes Raw Blame History
1 // This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
2
3 /**
4 * Where a session came from. `Disk` sessions have a real `.jsonl`
5 * file under `~/.claude/projects/`; `Archive` sessions are
6 * synthesized from `~/.claude/history.jsonl` prompt-input records
7 * and only carry the user's own prompts (no assistant responses).
8 */
9 export type SessionSource = "disk" | "archive";