3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-14 21:31:50 +00:00

formatting

This commit is contained in:
Ruby 2024-10-25 15:50:15 +02:00
parent 01db45f892
commit 37afdf755e
No known key found for this signature in database
GPG key ID: E0BDFAF7AE9E0531

View file

@ -6,7 +6,7 @@ import { GuildSavedMessages } from "../../data/GuildSavedMessages.js";
import { GuildTags } from "../../data/GuildTags.js";
import { zEmbedInput } from "../../utils.js";
const zEmbeds = z.object({embeds: z.array(zEmbedInput)})
const zEmbeds = z.object({ embeds: z.array(zEmbedInput) });
export const zTag = z.union([z.string(), zEmbeds]);
export type TTag = z.infer<typeof zTag>;