Repository interface representing a GitHub repository.
Contains basic repository metadata.
interface Repository { id: string; name: string;}
id: string
The unique identifier of the repository
name: string
The name of the repository
Repository interface representing a GitHub repository.