Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MergeHunk

import type { MergeHunk } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

Information about merge hunks in a merge or pull request operation.

interface MergeHunk {
base?: MergeHunkDetail | null;
destination?: MergeHunkDetail | null;
isConflict?: boolean | null;
source?: MergeHunkDetail | null;
}

§Properties

§
base?: MergeHunkDetail | null
[src]

Information about the merge hunk in the base of a merge or pull request.

§
destination?: MergeHunkDetail | null
[src]

Information about the merge hunk in the destination of a merge or pull request.

§
isConflict?: boolean | null
[src]

A Boolean value indicating whether a combination of hunks contains a conflict. Conflicts occur when the same file or the same lines in a file were modified in both the source and destination of a merge or pull request. Valid values include true, false, and null. True when the hunk represents a conflict and one or more files contains a line conflict. File mode conflicts in a merge do not set this to true.

§
source?: MergeHunkDetail | null
[src]

Information about the merge hunk in the source of a merge or pull request.