UNPKG

@mintlify/validation

Version:

Validates mint.json files

10 lines (9 loc) 245 B
import { z } from 'zod'; export const searchSchema = z .object({ prompt: z .string() .optional() .describe('The prompt to be displayed in the search bar placeholder'), }) .describe('Search display settings');