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

MergeBranchesByFastForwardInput

import type { MergeBranchesByFastForwardInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface MergeBranchesByFastForwardInput {
destinationCommitSpecifier: string;
repositoryName: string;
sourceCommitSpecifier: string;
targetBranch?: string | null;
}

§Properties

§
destinationCommitSpecifier: string
[src]

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

§
repositoryName: string
[src]

The name of the repository where you want to merge two branches.

§
sourceCommitSpecifier: string
[src]

The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).

§
targetBranch?: string | null
[src]

The branch where the merge is applied.