@brimveyn/aimux-config 0.8.2 → 0.8.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/types.ts +8 -1
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -250,7 +250,14 @@ export interface GitPanelState {
|
|
|
250
250
|
error: GitPanelError | null
|
|
251
251
|
}
|
|
252
252
|
|
|
253
|
-
export type DiffFileStatus =
|
|
253
|
+
export type DiffFileStatus =
|
|
254
|
+
| 'modified'
|
|
255
|
+
| 'new'
|
|
256
|
+
| 'deleted'
|
|
257
|
+
| 'binary'
|
|
258
|
+
| 'renamed'
|
|
259
|
+
| 'image'
|
|
260
|
+
| 'too-large'
|
|
254
261
|
|
|
255
262
|
export interface DiffData {
|
|
256
263
|
path: string
|