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

z.util.isAny

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

const { isAny } = z.util;
type isAny<T> = 0 extends 1 & T ? true : false;

§Type Parameters

§Type

§
0 extends 1 & T ? true : false
[src]