@mintlify/validation
Version:
Validates mint.json files
15 lines (14 loc) • 383 B
TypeScript
import { z } from 'zod';
export declare const colorsSchema: z.ZodObject<{
primary: z.ZodString;
light: z.ZodOptional<z.ZodString>;
dark: z.ZodOptional<z.ZodString>;
}, "strict", z.ZodTypeAny, {
primary: string;
light?: string | undefined;
dark?: string | undefined;
}, {
primary: string;
light?: string | undefined;
dark?: string | undefined;
}>;