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

UserInfo

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

Information about the user who made a specified commit.

interface UserInfo {
date?: string | null;
email?: string | null;
name?: string | null;
}

§Properties

§
date?: string | null
[src]

The date when the specified commit was commited, in timestamp format with GMT offset.

§
email?: string | null
[src]

The email address associated with the user who made the commit, if any.

§
name?: string | null
[src]

The name of the user who made the specified commit.