UNPKG

@mintlify/validation

Version:

Validates mint.json files

14 lines (13 loc) 483 B
import { z } from 'zod'; import { lindenConfigSchema } from './themes/linden.js'; import { mapleConfigSchema } from './themes/maple.js'; import { mintConfigSchema } from './themes/mint.js'; import { palmConfigSchema } from './themes/palm.js'; import { willowConfigSchema } from './themes/willow.js'; export const docsConfigSchema = z.discriminatedUnion('theme', [ mintConfigSchema, mapleConfigSchema, palmConfigSchema, willowConfigSchema, lindenConfigSchema, ]);