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

GetMergeCommitOutput

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

§Properties

§
baseCommitId?: string | null
[src]

The commit ID of the merge base.

§
destinationCommitId?: string | null
[src]

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

§
mergedCommitId?: string | null
[src]

The commit ID for the merge commit created when the source branch was merged into the destination branch. If the fast-forward merge strategy was used, there is no merge commit.

§
sourceCommitId?: string | null
[src]

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