Reminist - v1.0.6
    Preparing search index...

    Type Alias NullProtoObj<T>

    NullProtoObj: InstanceType<new () => Record<PropertyKey, T>>

    A utility type for objects with no prototype (Object.create(null)). This is useful for high-performance caches and maps to avoid prototype inheritance overhead and potential property collisions.

    Type Parameters

    • T = unknown

      The type of the values stored in the object.