add thaldrin to settings and fix types

This commit is contained in:
Lio Young 2021-04-20 00:19:24 +02:00
parent b302d220eb
commit 297d697856
No known key found for this signature in database
GPG Key ID: 789795A11879E169
2 changed files with 3 additions and 2 deletions

View File

@ -8,7 +8,8 @@ export default <Config>{
token: "", token: "",
apis: { apis: {
sheri: "", sheri: "",
yiffrest: "" yiffrest: "",
thaldrin: ""
}, },
supabase: { supabase: {
url: "", url: "",

View File

@ -43,7 +43,7 @@ export type Context = {
author: User; author: User;
member: GuildMember | null; member: GuildMember | null;
supabase: SupabaseClient; supabase: SupabaseClient;
guildSettings: Server; settings: Server;
config: Config; config: Config;
isDeveloper: string[] isDeveloper: string[]
} }