welcome_message: fix default types
This commit is contained in:
parent
7909c99a7f
commit
94bc60268c
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ import { GuildLogs } from "src/data/GuildLogs";
|
||||||
export const ConfigSchema = t.type({
|
export const ConfigSchema = t.type({
|
||||||
send_dm: t.boolean,
|
send_dm: t.boolean,
|
||||||
send_to_channel: tNullable(t.string),
|
send_to_channel: tNullable(t.string),
|
||||||
message: t.string,
|
message: tNullable(t.string),
|
||||||
});
|
});
|
||||||
export type TConfigSchema = t.TypeOf<typeof ConfigSchema>;
|
export type TConfigSchema = t.TypeOf<typeof ConfigSchema>;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue