@mintlify/validation
Version:
Validates mint.json files
29 lines (28 loc) • 824 B
TypeScript
import { z } from 'zod';
export declare const errorsSchema: z.ZodObject<{
'404': z.ZodObject<{
redirect: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
title: z.ZodOptional<z.ZodString>;
description: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
redirect: boolean;
title?: string | undefined;
description?: string | undefined;
}, {
title?: string | undefined;
description?: string | undefined;
redirect?: boolean | undefined;
}>;
}, "strip", z.ZodTypeAny, {
'404': {
redirect: boolean;
title?: string | undefined;
description?: string | undefined;
};
}, {
'404': {
title?: string | undefined;
description?: string | undefined;
redirect?: boolean | undefined;
};
}>;