@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
18 lines (17 loc) • 635 B
text/typescript
import z from "zod";
//#region src/libs/runtime/schema.d.ts
declare const RuntimeAdapterSchema: z.ZodObject<{
key: z.ZodString;
hosts: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodObject<{
entrypoint: z.ZodString;
integrationEntrypoint: z.ZodOptional<z.ZodString>;
}, z.z.core.$strip>>>;
config: z.ZodOptional<z.ZodObject<{
customBuildArtifacts: z.ZodOptional<z.ZodArray<z.ZodString>>;
customPrepareArtifacts: z.ZodOptional<z.ZodArray<z.ZodString>>;
}, z.z.core.$strip>>;
lucid: z.ZodString;
}, z.z.core.$strip>;
//#endregion
export { RuntimeAdapterSchema as default };
//# sourceMappingURL=schema.d.mts.map