Type Alias SafeParseError<Input>

SafeParseError<Input>: {
    data?: never;
    error: ZodError<Input>;
    success: false;
}

Type Parameters

  • Input