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

Location

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

Returns information about the location of a change or comment in the comparison between two commits or a pull request.

interface Location {
filePath?: string | null;
filePosition?: number | null;
relativeFileVersion?: RelativeFileVersionEnum | null;
}

§Properties

§
filePath?: string | null
[src]

The name of the file being compared, including its extension and subdirectory, if any.

§
filePosition?: number | null
[src]

The position of a change in a compared file, in line number format.

§
relativeFileVersion?: RelativeFileVersionEnum | null
[src]

In a comparison of commits or a pull request, whether the change is in the before or after of that comparison.