One changed path in the working tree (vs. the loaded ref). status mirrors the host DiffResult change kinds; path is repo-relative. Contents are NOT carried — the native panel showed path + status, and a per-file content diff is a deferred follow-up (plan step 6).

interface VcsChange {
    path: string;
    status: "deleted" | "created" | "modified";
}

Properties

Properties

path: string
status: "deleted" | "created" | "modified"