Skip to main content
Module

x/zod/mod.ts>z.OK

TypeScript-first schema validation with static type inference
Extremely Popular
Go to Latest
type alias z.OK
Re-export
import { type z } from "https://deno.land/x/zod@v3.18.0/mod.ts";
const { OK } = z;
definition: { status: "valid"; value: T; }
variable z.OK
Re-export
import { z } from "https://deno.land/x/zod@v3.18.0/mod.ts";
const { OK } = z;

type

<T>(value: T) => OK<T>