mirror of
https://github.com/ZeppelinBot/Zeppelin.git
synced 2025-03-15 05:41:51 +00:00
Fixed config parsing error with tags
This commit is contained in:
parent
cafcc2839e
commit
b428e18fc7
1 changed files with 2 additions and 2 deletions
|
@ -4,9 +4,9 @@ import { GuildArchives } from "../../data/GuildArchives";
|
|||
import { GuildLogs } from "../../data/GuildLogs";
|
||||
import { GuildSavedMessages } from "../../data/GuildSavedMessages";
|
||||
import { GuildTags } from "../../data/GuildTags";
|
||||
import { zEmbedInput } from "../../utils";
|
||||
import { zBoundedCharacters, zStrictMessageContent } from "../../utils";
|
||||
|
||||
export const zTag = z.union([z.string(), zEmbedInput]);
|
||||
export const zTag = z.union([zBoundedCharacters(0, 4000), zStrictMessageContent]);
|
||||
export type TTag = z.infer<typeof zTag>;
|
||||
|
||||
export const zTagCategory = z
|
||||
|
|
Loading…
Add table
Reference in a new issue