Module

x/fluentci/deps.ts>z.ZodNumberCheck

This is the command line interface for FluentCI.
Go to Latest
type alias z.ZodNumberCheck
import { type z } from "https://dotland.deno.dev/x/fluentci@v0.13.0/deps.ts";
const { ZodNumberCheck } = z;
definition:
| { kind: "min"; value: number; inclusive: boolean; message?: string; }
| { kind: "max"; value: number; inclusive: boolean; message?: string; }
| { kind: "int"; message?: string; }
| { kind: "multipleOf"; value: number; message?: string; }
| { kind: "finite"; message?: string; }