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>PlainObj

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

Utility type that will only accept objects that are considered 'plain objects' according to the IsPlainObj predicate type.

definition: IsPlainObj<T> extends true ? T : never