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

BatchDescribeMergeConflictsOutput

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

§Properties

§
baseCommitId?: string | null
[src]

The commit ID of the merge base.

§
conflicts: Conflict[]
[src]

A list of conflicts for each file, including the conflict metadata and the hunks of the differences between the files.

§
destinationCommitId: string
[src]

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

§

A list of any errors returned while describing the merge conflicts for each file.

§
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.