Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
type alias OmitComplexes
import { type OmitComplexes } from "https://deno.land/std@0.215.0/collections/mod.ts";

Exclude map, sets and array from type

definition: Omit<T, keyof PartialByType<T,
| Map<unknown, unknown>
| Set<unknown>
| Array<unknown>
| Record<PropertyKey, unknown>
>>