Skip to content

SafeParseResult

SafeParseResult<T> = { data: T; success: true; } | { error: z.ZodError; success: false; }

Defined in: zod/src/index.ts:7

Safe parse result type (Zod v4 compatible)

T