Git object identifier and type information.

interface GitObject {
    objectId?: string;
    objectType?: GitObjectType;
}

Properties

objectId?: string

Object Id (Sha1Id).

objectType?: GitObjectType

Type of object (Commit, Tree, Blob, Tag)