Skip to main content
Module

x/oridune_validator/mod.ts>IsObject

A powerful typescript compatible/zod alternative schema validator.
Go to Latest
type alias IsObject
import { type IsObject } from "https://deno.land/x/oridune_validator@v0.2.25/mod.ts";

Type Parameters

T
R
optional
F = T
optional
Excludes = never
definition: T extends
| ((...args: any[]) => any)
| (new (...args: any[]) => any)
| { constructor: new (...args: any[]) => any; }
| Date
| Array<any>
| URL
| RegExp
? F : T extends object ? R : F