mirror of
https://github.com/Kir-Antipov/mc-publish.git
synced 2024-11-22 00:11:02 -05:00
Made interface that represents id of a GitHub repo
This commit is contained in:
parent
9dbff67b97
commit
0a43092503
1 changed files with 14 additions and 0 deletions
14
src/platforms/github/github-repository.ts
Normal file
14
src/platforms/github/github-repository.ts
Normal 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;
|
||||||
|
}
|
Loading…
Reference in a new issue