Made interface that represents id of a GitHub repo

This commit is contained in:
Kir_Antipov 2023-04-17 17:15:16 +00:00
parent 9dbff67b97
commit 0a43092503

View file

@ -0,0 +1,14 @@
/**
* Represents an identifier for a GitHub repository.
*/
export interface GitHubRepositoryIdentifier {
/**
* The name of the repository.
*/
repo: string;
/**
* The name of the repository owner.
*/
owner: string;
}