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

GetFileOutput

import type { GetFileOutput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetFileOutput {
blobId: string;
commitId: string;
fileContent: Uint8Array;
fileMode: FileModeTypeEnum;
filePath: string;
fileSize: number;
}

§Properties

§
blobId: string
[src]

The blob ID of the object that represents the file content.

§
commitId: string
[src]

The full commit ID of the commit that contains the content returned by GetFile.

§
fileContent: Uint8Array
[src]

The base-64 encoded binary data object that represents the content of the file.

§

The extrapolated file mode permissions of the blob. Valid values include strings such as EXECUTABLE and not numeric values.

Note: The file mode permissions returned by this API are not the standard file mode permission values, such as 100644, but rather extrapolated values. See the supported return values.

§
filePath: string
[src]

The fully qualified path to the specified file. Returns the name and extension of the file.

§
fileSize: number
[src]

The size of the contents of the file, in bytes.