Skip to main content
Module

x/fathym_common/deps.ts>OmitComplexes

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
type alias OmitComplexes
import { type OmitComplexes } from "https://deno.land/x/fathym_common@v0.0.166/deps.ts";

Exclude map, sets and array from type

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