@zod/mini
Version:
TypeScript-first schema declaration and validation library with static type inference
8 lines (7 loc) • 553 B
TypeScript
import * as core from "@zod/core";
import * as schemas from "./schemas.js";
export declare function string(params?: string | core.$ZodStringParams): schemas.ZodMiniString;
export declare function number(params?: string | core.$ZodNumberParams): schemas.ZodMiniNumber;
export declare function boolean(params?: string | core.$ZodBooleanParams): schemas.ZodMiniBoolean;
export declare function bigint(params?: string | core.$ZodBigIntParams): schemas.ZodMiniBigInt;
export declare function date(params?: string | core.$ZodDateParams): schemas.ZodMiniDate;