diff --git a/src/platforms/github/github-repository.ts b/src/platforms/github/github-repository.ts new file mode 100644 index 0000000..37e902b --- /dev/null +++ b/src/platforms/github/github-repository.ts @@ -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; +}