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

BatchGetCommitsOutput

import type { BatchGetCommitsOutput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface BatchGetCommitsOutput {
commits?: Commit[] | null;
errors?: BatchGetCommitsError[] | null;
}

§Properties

§
commits?: Commit[] | null
[src]

An array of commit data type objects, each of which contains information about a specified commit.

§
errors?: BatchGetCommitsError[] | null
[src]

Returns any commit IDs for which information could not be found. For example, if one of the commit IDs was a shortened SHA ID or that commit was not found in the specified repository, the ID returns an error object with more information.