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

DescribeMergeConflictsOutput

import type { DescribeMergeConflictsOutput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface DescribeMergeConflictsOutput {
baseCommitId?: string | null;
conflictMetadata: ConflictMetadata;
destinationCommitId: string;
mergeHunks: MergeHunk[];
nextToken?: string | null;
sourceCommitId: string;
}

§Properties

§
baseCommitId?: string | null
[src]

The commit ID of the merge base.

§
conflictMetadata: ConflictMetadata
[src]

Contains metadata about the conflicts found in the merge.

§
destinationCommitId: string
[src]

The commit ID of the destination commit specifier that was used in the merge evaluation.

§
mergeHunks: MergeHunk[]
[src]

A list of merge hunks of the differences between the files or lines.

§
nextToken?: string | null
[src]

An enumeration token that can be used in a request to return the next batch of the results.

§
sourceCommitId: string
[src]

The commit ID of the source commit specifier that was used in the merge evaluation.