Refactor to typescript

This commit is contained in:
Benjamin Toby
2025-01-16 06:22:33 +01:00
parent 5f589f89d8
commit 09e8b1f6d7
34 changed files with 756 additions and 381 deletions
+1
View File
@@ -0,0 +1 @@
declare function githubWebhook(): boolean;
+4
View File
@@ -0,0 +1,4 @@
"use strict";
function githubWebhook() {
return true;
}