We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d509d29 commit d97c706Copy full SHA for d97c706
src/models.ts
@@ -319,7 +319,7 @@ export type Merge = {
319
/**
320
* The conflict data without the grouped fields
321
*/
322
- data: Omit<Conflict, ConflictGroupedFields>;
+ data: Omit<Conflict, ConflictGroupedFields>[];
323
})[];
324
325
@@ -381,7 +381,7 @@ export type Diff = Omit<Merge, 'conflicts'> & {
381
382
383
384
- data: Omit<Conflict, ConflictGroupedFields & DiffHiddenFields>;
+ data: Omit<Conflict, ConflictGroupedFields & DiffHiddenFields>[];
385
386
};
387
0 commit comments