Fixed all typescript errors (hopefully, github)
diff --git a/src/config/main.d.ts b/src/config/main.d.ts
new file mode 100644
index 0000000..be6a253
--- /dev/null
+++ b/src/config/main.d.ts
@@ -0,0 +1,21 @@
+declare const config: {
+ developmentToken: string,
+ developmentGuildID: string,
+ enableDevelopment: boolean,
+ token: string,
+ managementGuildID: string,
+ owners: string[],
+ commandsFolder: string,
+ eventsFolder: string,
+ messageContextFolder: string,
+ userContextFolder: string,
+ verifySecret: string,
+ mongoUrl: string,
+ baseUrl: string,
+ pastebinApiKey: string,
+ pastebinUsername: string,
+ pastebinPassword: string,
+ rapidApiKey: string
+};
+
+export default config;
\ No newline at end of file