Type Alias OmitComplexes<T>

OmitComplexes<T>: Omit<T, keyof PartialByType<T,
    | Map<unknown, unknown>
    | Set<unknown>
    | unknown[]
    | Record<PropertyKey, unknown>>>

Exclude map, sets and array from type

Type Parameters

  • T