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 +}