Skip to main content
Module

x/zod/index.ts>ZodType#refinement

TypeScript-first schema validation with static type inference
Very Popular
Go to Latest
method ZodType.prototype.refinement
Re-export
import { ZodType } from "https://deno.land/x/zod@v3.17.3/index.ts";

Type Parameters

RefinedOutput extends Output

Parameters

check: (arg: Output) => arg is RefinedOutput
refinementData: IssueData | ((arg: Output, ctx: RefinementCtx) => IssueData)

Parameters

check: (arg: Output) => boolean
refinementData: IssueData | ((arg: Output, ctx: RefinementCtx) => IssueData)

Returns

ZodEffects<this, Output, Input>

Parameters

check: (arg: Output) => unknown
refinementData: IssueData | ((arg: Output, ctx: RefinementCtx) => IssueData)

Returns

ZodEffects<this, Output, Input>