import { type OmitComplexes } from "https://deno.land/std@0.217.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>