web-crawling-utils
Version:
Common useful utils for web crawling and automation scripts
33 lines (32 loc) • 685 B
TypeScript
import { z } from 'zod';
export declare const testZodSchema: z.ZodObject<{
name: z.ZodString;
age: z.ZodNumber;
email: z.ZodString;
address: z.ZodObject<{
city: z.ZodString;
postalCode: z.ZodString;
}, "strip", z.ZodTypeAny, {
city?: string;
postalCode?: string;
}, {
city?: string;
postalCode?: string;
}>;
}, "strip", z.ZodTypeAny, {
name?: string;
address?: {
city?: string;
postalCode?: string;
};
email?: string;
age?: number;
}, {
name?: string;
address?: {
city?: string;
postalCode?: string;
};
email?: string;
age?: number;
}>;