Interface RepoContribution

A repository and the number of contributions a user made to it in a period.

interface RepoContribution {
    repository: { nameWithOwner: string; url: string };
    totalCount: number;
}

Properties

repository: { nameWithOwner: string; url: string }

Repository info

Type declaration

  • nameWithOwner: string

    Full name including owner, e.g. 'octocat/Hello-World'

  • url: string

    URL to the repository on GitHub

totalCount: number

Total number of contributions to this repository