Type Alias AsyncCollapse<TValue>

AsyncCollapse: TValue extends string
    ? string
    : TValue extends | (infer TItem)[]
    | AsyncIterableValue<infer TItem>
    | IAsyncCollection<infer TItem>
        ? TItem
        : TValue

Collapses 1 layer of nested array, iterable, async iterable, or async-collection types into their element type. If TValue is an Array, ArrayLike, Iterable, AsyncIterable, or IAsyncCollection, the result is the inner item type. Otherwise TValue is returned as-is.

Type Parameters

  • TValue

    The value type to collapse.

    IMPORT_PATH: "@daiso-tech/core/collection/contracts"