aboutsummaryrefslogtreecommitdiffstats
path: root/src/ts/types/repos.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/ts/types/repos.ts')
-rw-r--r--src/ts/types/repos.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/ts/types/repos.ts b/src/ts/types/repos.ts
new file mode 100644
index 0000000..7dacacc
--- /dev/null
+++ b/src/ts/types/repos.ts
@@ -0,0 +1,7 @@
+export type RepoData = {
+ created_at: string;
+ updated_at: string;
+ stargazers_count: number;
+};
+
+export type RepoAPI = 'github';