Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/rimbu/base/plain-object.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@1.0.3/base/plain-object.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; }