Values.MergeHunkDetailSourceInformation about the details of a merge hunk that contains a conflict in a merge or pull request operation.
type nonrec t = {startLine : LineNumber.t option;The start position of the hunk in the merge result.
*)endLine : LineNumber.t option;The end position of the hunk in the merge result.
*)hunkContent : HunkContent.t option;The base-64 encoded content of the hunk merged region that might contain a conflict.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Integer of LineNumber.t | `String of HunkContent.t ]) list ]