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

    Type Alias DictionaryObject

    DictionaryObject: { [key: string | symbol]: unknown } & {
        __brand: "DictionaryObject";
        constructor: undefined;
        prototype: null;
    }

    A prototype-less object - created via Object.create(null).

    This kind of object has:

    • No prototype chain (Object.getPrototypeOf(obj) === null)
    • No inherited members or default Object.prototype behavior

    Ideal for use as a pure dictionary/hashmap, avoiding key collisions with inherited properties.