Variable checkSchemaConst
checkSchema: ZodPipe<
ZodObject<
{
ipAddress: ZodString;
maxAgeInDays: ZodOptional<ZodNumber>;
verbose: ZodOptional<ZodBoolean>;
},
$strip,
>,
ZodTransform<
{ ipAddress: string; maxAgeInDays?: number; verbose?: boolean },
{ ipAddress: string; maxAgeInDays?: number; verbose?: boolean },
>,
> = ...