@brimveyn/aimux-config 0.5.10 → 0.5.13
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 +5 -1
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -204,7 +204,7 @@ export interface GitPanelState {
|
|
|
204
204
|
error: GitPanelError | null
|
|
205
205
|
}
|
|
206
206
|
|
|
207
|
-
export type DiffFileStatus = 'modified' | 'new' | 'deleted' | 'binary' | 'renamed'
|
|
207
|
+
export type DiffFileStatus = 'modified' | 'new' | 'deleted' | 'binary' | 'renamed' | 'image'
|
|
208
208
|
|
|
209
209
|
export interface DiffData {
|
|
210
210
|
path: string
|
|
@@ -214,6 +214,10 @@ export interface DiffData {
|
|
|
214
214
|
binarySizeBefore?: number
|
|
215
215
|
binarySizeAfter?: number
|
|
216
216
|
errorMessage?: string
|
|
217
|
+
imageBytesBefore?: Uint8Array
|
|
218
|
+
imageBytesAfter?: Uint8Array
|
|
219
|
+
imageMime?: string
|
|
220
|
+
imageFormatLabel?: string
|
|
217
221
|
}
|
|
218
222
|
|
|
219
223
|
export type GitDiffView = 'split' | 'stacked'
|