@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) • 1.07 kB
text/typescript
import z from "zod";
//#region src/schemas/options.d.ts
declare const optionsNameSchema: z.ZodUnion<readonly [z.ZodLiteral<"media_storage_used">, z.ZodCustom<`media_storage_used:t:${string}`, `media_storage_used:t:${string}`>, z.ZodLiteral<"system_alert_email">, z.ZodUnion<readonly [z.ZodLiteral<"license_key">, z.ZodLiteral<"license_key_display">, z.ZodLiteral<"license_valid">, z.ZodLiteral<"license_last_checked">, z.ZodLiteral<"license_error_message">, z.ZodLiteral<"license_ai_enabled">]>, z.ZodCustom<`license_key:t:${string}` | `license_key_display:t:${string}` | `license_valid:t:${string}` | `license_last_checked:t:${string}` | `license_error_message:t:${string}` | `license_ai_enabled:t:${string}`, `license_key:t:${string}` | `license_key_display:t:${string}` | `license_valid:t:${string}` | `license_last_checked:t:${string}` | `license_error_message:t:${string}` | `license_ai_enabled:t:${string}`>]>;
type OptionsName = z.infer<typeof optionsNameSchema>;
//#endregion
export { OptionsName, optionsNameSchema };
//# sourceMappingURL=options.d.mts.map