@mintlify/validation
Version:
Validates mint.json files
12 lines (11 loc) • 402 B
TypeScript
import { z } from 'zod';
export declare const appearanceSchema: z.ZodObject<{
default: z.ZodOptional<z.ZodEnum<["system", "light", "dark"]>>;
strict: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
default?: "light" | "dark" | "system" | undefined;
strict?: boolean | undefined;
}, {
default?: "light" | "dark" | "system" | undefined;
strict?: boolean | undefined;
}>;