Skip to main content
Go to Latest
type alias OmitComplexes
import { type OmitComplexes } from "https://deno.land/std@0.223.0/collections/deep_merge.ts";

Exclude map, sets and array from type

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