UNPKG

polen

Version:

A framework for delightful GraphQL developer portals

10 lines 330 B
import { z } from 'zod/v4'; /** * Schema for validating front matter content */ export declare const MetadataSchema: z.ZodObject<{ description: z.ZodOptional<z.ZodString>; hidden: z.ZodDefault<z.ZodBoolean>; }, z.core.$strip>; export type Metadata = z.infer<typeof MetadataSchema>; //# sourceMappingURL=metadata.d.ts.map