mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
7f571d36ea
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
10 lines
188 B
TypeScript
10 lines
188 B
TypeScript
export namespace Snapshot {
|
|
export type FileDiff = {
|
|
file?: string
|
|
patch?: string
|
|
additions: number
|
|
deletions: number
|
|
status?: "added" | "deleted" | "modified"
|
|
}
|
|
}
|