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

GetFolderOutput

import type { GetFolderOutput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface GetFolderOutput {
commitId: string;
files?: File[] | null;
folderPath: string;
subFolders?: Folder[] | null;
subModules?: SubModule[] | null;
symbolicLinks?: SymbolicLink[] | null;
treeId?: string | null;
}

§Properties

§
commitId: string
[src]

The full commit ID used as a reference for the returned version of the folder content.

§
files?: File[] | null
[src]

The list of files in the specified folder, if any.

§
folderPath: string
[src]

The fully qualified path of the folder whose contents are returned.

§
subFolders?: Folder[] | null
[src]

The list of folders that exist under the specified folder, if any.

§
subModules?: SubModule[] | null
[src]

The list of submodules in the specified folder, if any.

§
treeId?: string | null
[src]

The full SHA-1 pointer of the tree information for the commit that contains the folder.