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

BlobMetadata

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

Returns information about a specific Git blob object.

interface BlobMetadata {
blobId?: string | null;
mode?: string | null;
path?: string | null;
}

§Properties

§
blobId?: string | null
[src]

The full ID of the blob.

§
mode?: string | null
[src]

The file mode permissions of the blob. File mode permission codes include:

  • 100644 indicates read/write
  • 100755 indicates read/write/execute
  • 160000 indicates a submodule
  • 120000 indicates a symlink
§
path?: string | null
[src]

The path to the blob and associated file name, if any.