Skip to main content
Module

x/rimbu/base/mod.ts>NotIterable

Rimbu is a TypeScript library focused on immutable, performant, and type-safe collections and other tools.
Go to Latest
type alias NotIterable
import { type NotIterable } from "https://deno.land/x/rimbu@0.12.3/base/mod.ts";

Utility type to exclude any types that are iterable. Useful in cases where plain objects are required as inputs but not arrays.

definition: { [[Symbol.iterator]]?: never; }