welcome_message: fix default types

This commit is contained in:
Dragory 2020-07-30 13:24:30 +03:00
parent 7909c99a7f
commit 94bc60268c
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -6,7 +6,7 @@ import { GuildLogs } from "src/data/GuildLogs";
export const ConfigSchema = t.type({
send_dm: t.boolean,
send_to_channel: tNullable(t.string),
message: t.string,
message: tNullable(t.string),
});
export type TConfigSchema = t.TypeOf<typeof ConfigSchema>;