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

Target

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

Returns information about a target for a pull request.

interface Target {
destinationReference?: string | null;
repositoryName: string;
sourceReference: string;
}

§Properties

§
destinationReference?: string | null
[src]

The branch of the repository where the pull request changes are merged. Also known as the destination branch.

§
repositoryName: string
[src]

The name of the repository that contains the pull request.

§
sourceReference: string
[src]

The branch of the repository that contains the changes for the pull request. Also known as the source branch.