@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
8 lines (7 loc) • 556 B
text/typescript
import z from "zod";
//#region src/schemas/email.d.ts
declare const emailDeliveryStatusSchema: z.ZodUnion<readonly [z.ZodLiteral<"sent">, z.ZodLiteral<"delivered">, z.ZodLiteral<"delayed">, z.ZodLiteral<"complained">, z.ZodLiteral<"bounced">, z.ZodLiteral<"clicked">, z.ZodLiteral<"failed">, z.ZodLiteral<"opened">, z.ZodLiteral<"scheduled">]>;
declare const emailTypeSchema: z.ZodUnion<readonly [z.ZodLiteral<"external">, z.ZodLiteral<"internal">]>;
//#endregion
export { emailDeliveryStatusSchema, emailTypeSchema };
//# sourceMappingURL=email.d.mts.map