@petsel/es-type-detection - v1.0.0
    Preparing search index...

    Type Alias AnyObject

    AnyObject: { __brand: "AnyObject"; constructor: Function }

    Any non-null object value - including:

    • Plain objects (e.g. {}, new Object())
    • Instances of built-in types (e.g. Array, RegExp, Date, Map, etc.)
    • Instances of custom classes or constructor functions

    The null value is explicitly excluded, even though typeof null === 'object'. The constructor refers to the actual constructor function that created the object.

    Type declaration

    • __brand: "AnyObject"
    • constructor: Function