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

chore: run prettier

This commit is contained in:
Dragory 2024-01-27 14:23:13 +02:00
parent 77ab2718e7
commit 873bf7eb99
No known key found for this signature in database
54 changed files with 462 additions and 416 deletions

View file

@ -11,14 +11,8 @@ const zBaseSingleSpamConfig = z.strictObject({
count: z.number(),
mute: z.boolean().default(false),
mute_time: z.number().nullable().default(null),
remove_roles_on_mute: z.union([
z.boolean(),
z.array(zSnowflake),
]).default(false),
restore_roles_on_mute: z.union([
z.boolean(),
z.array(zSnowflake),
]).default(false),
remove_roles_on_mute: z.union([z.boolean(), z.array(zSnowflake)]).default(false),
restore_roles_on_mute: z.union([z.boolean(), z.array(zSnowflake)]).default(false),
clean: z.boolean().default(false),
});
export type TBaseSingleSpamConfig = z.infer<typeof zBaseSingleSpamConfig>;