@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
7 lines (6 loc) • 304 B
text/typescript
import z from "zod";
//#region src/libs/logger/schema.d.ts
declare const LogLevelSchema: z.ZodUnion<readonly [z.ZodLiteral<"error">, z.ZodLiteral<"warn">, z.ZodLiteral<"info">, z.ZodLiteral<"debug">, z.ZodLiteral<"silent">]>;
//#endregion
export { LogLevelSchema };
//# sourceMappingURL=schema.d.mts.map