blob: 6549234587953ae9dbd50787f7f8abe8a3027ff6 [file] [log] [blame]
pineafana2e39c72023-02-21 18:37:32 +00001declare const config: {
2 developmentToken: string,
3 developmentGuildID: string,
4 enableDevelopment: boolean,
5 token: string,
6 managementGuildID: string,
7 owners: string[],
8 commandsFolder: string,
9 eventsFolder: string,
10 messageContextFolder: string,
11 userContextFolder: string,
12 verifySecret: string,
TheCodedProffaae5332023-03-01 18:16:05 -050013 mongoOptions: {
14 username: string,
15 password: string,
16 database: string,
17 host: string,
18 },
pineafana2e39c72023-02-21 18:37:32 +000019 baseUrl: string,
20 pastebinApiKey: string,
21 pastebinUsername: string,
22 pastebinPassword: string,
23 rapidApiKey: string
24};
25
26export default config;