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

Difference

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

Returns information about a set of differences for a commit specifier.

interface Difference {
afterBlob?: BlobMetadata | null;
beforeBlob?: BlobMetadata | null;
changeType?: ChangeTypeEnum | null;
}

§Properties

§
afterBlob?: BlobMetadata | null
[src]

Information about an afterBlob data type object, including the ID, the file mode permission code, and the path.

§
beforeBlob?: BlobMetadata | null
[src]

Information about a beforeBlob data type object, including the ID, the file mode permission code, and the path.

§
changeType?: ChangeTypeEnum | null
[src]

Whether the change type of the difference is an addition (A), deletion (D), or modification (M).