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

MergeHunkDetail

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

Information about the details of a merge hunk that contains a conflict in a merge or pull request operation.

interface MergeHunkDetail {
endLine?: number | null;
hunkContent?: string | null;
startLine?: number | null;
}

§Properties

§
endLine?: number | null
[src]

The end position of the hunk in the merge result.

§
hunkContent?: string | null
[src]

The base-64 encoded content of the hunk merged region that might contain a conflict.

§
startLine?: number | null
[src]

The start position of the hunk in the merge result.