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

CommentsForComparedCommit

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

Returns information about comments on the comparison between two commits.

interface CommentsForComparedCommit {
afterBlobId?: string | null;
afterCommitId?: string | null;
beforeBlobId?: string | null;
beforeCommitId?: string | null;
comments?: Comment[] | null;
location?: Location | null;
repositoryName?: string | null;
}

§Properties

§
afterBlobId?: string | null
[src]

The full blob ID of the commit used to establish the after of the comparison.

§
afterCommitId?: string | null
[src]

The full commit ID of the commit used to establish the after of the comparison.

§
beforeBlobId?: string | null
[src]

The full blob ID of the commit used to establish the before of the comparison.

§
beforeCommitId?: string | null
[src]

The full commit ID of the commit used to establish the before of the comparison.

§
comments?: Comment[] | null
[src]

An array of comment objects. Each comment object contains information about a comment on the comparison between commits.

§
location?: Location | null
[src]

Location information about the comment on the comparison, including the file name, line number, and whether the version of the file where the comment was made is BEFORE or AFTER.

§
repositoryName?: string | null
[src]

The name of the repository that contains the compared commits.