3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-19 08:05:01 +00:00

welcome_message: fix default types

This commit is contained in:
Dragory 2020-07-30 13:24:30 +03:00
parent 93705f888b
commit 35fa696eb4

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>;