From 0a4309250332167c8baa85b9e925d83c0aead613 Mon Sep 17 00:00:00 2001 From: Kir_Antipov Date: Mon, 17 Apr 2023 17:15:16 +0000 Subject: [PATCH] Made interface that represents id of a GitHub repo --- src/platforms/github/github-repository.ts | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/platforms/github/github-repository.ts 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; +}