UNPKG

@mintlify/validation

Version:

Validates mint.json files

5 lines (4 loc) 234 B
import { z } from 'zod'; import { mintConfigSchema } from '../schemas/v1/config.js'; export type WarningGenerator = (config: z.infer<typeof mintConfigSchema>) => z.ZodIssue[]; export declare const aggregateWarnings: WarningGenerator;