Skip to content
This repository was archived by the owner on Dec 18, 2025. It is now read-only.

Commit 8e4eb6d

Browse files
committed
Fixed conditional bug with ConflictResolveData
1 parent 994311b commit 8e4eb6d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rest/conflicts.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,17 +14,17 @@ export type ConflictResolveData = {
1414
/**
1515
* Use source checkpoint
1616
*/
17-
useSrc: boolean;
17+
useSrc?: boolean;
1818

1919
/**
2020
* Use destination checkpoint
2121
*/
22-
useDst: boolean;
22+
useDst?: boolean;
2323

2424
/**
2525
* Un-resolve conflicts
2626
*/
27-
revert: boolean;
27+
revert?: boolean;
2828
};
2929

3030
/**

0 commit comments

Comments
 (0)