Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/typebox/src/typebox.ts>TExcludeResult

JSON Schema Type Builder with Static Type Resolution for TypeScript
Go to Latest
type alias TExcludeResult
import { type TExcludeResult } from "https://deno.land/x/typebox@0.26.0-dev.1/src/typebox.ts";
definition: T extends [] ? TNever : T extends [infer S] ? S : TUnion<T>