From b117f7f6c821b3628e25ce9378c60cb7ca2594e5 Mon Sep 17 00:00:00 2001 From: Arthur DANJOU Date: Mon, 17 Jan 2022 21:29:03 +0100 Subject: [PATCH] Add github type --- app/Types/IGithub.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 app/Types/IGithub.ts diff --git a/app/Types/IGithub.ts b/app/Types/IGithub.ts new file mode 100644 index 0000000..2435382 --- /dev/null +++ b/app/Types/IGithub.ts @@ -0,0 +1,9 @@ +export interface GithubRequest { + content: string + sha: string +} + +export interface GithubReason { + reason: string + error: string +}