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