Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

z.ZodAny

import { z } from "https://esm.sh/zod@3.25.76/index.d.cts"; 

const { ZodAny } = z;
class ZodAny extends ZodType<any, ZodAnyDef, any> {
_any: true;
 
_parse(input: ParseInput): ParseReturnType<this["_output"]>;
 
static create: (params?: RawCreateParams) => ZodAny;
}

§Extends

§
ZodType<any, ZodAnyDef, any>
[src]

§Properties

§
_any: true
[src]

§Methods

§
_parse(input: ParseInput): ParseReturnType<this["_output"]>
[src]

§Static Properties

§
create: (params?: RawCreateParams) => ZodAny
[src]