@mintlify/validation
Version:
Validates mint.json files
15 lines (14 loc) • 437 B
TypeScript
import { z } from 'zod';
export declare const feedbackSchema: z.ZodObject<{
thumbs: z.ZodOptional<z.ZodBoolean>;
edits: z.ZodOptional<z.ZodBoolean>;
issues: z.ZodOptional<z.ZodBoolean>;
}, "strip", z.ZodTypeAny, {
thumbs?: boolean | undefined;
edits?: boolean | undefined;
issues?: boolean | undefined;
}, {
thumbs?: boolean | undefined;
edits?: boolean | undefined;
issues?: boolean | undefined;
}>;