UNPKG

@mintlify/validation

Version:

Validates mint.json files

10 lines (9 loc) 324 B
import { z } from 'zod'; export const interactionSchema = z .object({ drilldown: z .boolean() .optional() .describe('Whether to automatically navigate to the first page when navigation groups are expanded'), }) .describe('Options for how users interact with links in the documentation');