UNPKG

@mintlify/validation

Version:

Validates mint.json files

5 lines (4 loc) 293 B
import { z } from 'zod'; export declare const themes: readonly ["mint", "maple", "palm", "willow", "linden", "almond", "aspen"]; export declare const themeSchema: z.ZodEnum<["mint", "maple", "palm", "willow", "linden", "almond", "aspen"]>; export type ThemeType = z.infer<typeof themeSchema>;