Interface PinnedRepository

A pinned repository on a user's GitHub profile.

interface PinnedRepository {
    description: null | string;
    nameWithOwner: string;
    primaryLanguage: null | { name: string };
    stargazerCount: number;
    url: string;
}

Properties

description: null | string

Repository description

nameWithOwner: string

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

primaryLanguage: null | { name: string }

Primary programming language, or null if none detected

stargazerCount: number

Number of stars

url: string

URL to the repository on GitHub