devtypes - v2.0.0
    Preparing search index...

    Type Alias PlainObject

    PlainObject: Record<string | number | symbol, any>

    Generic plain object type.

    Represents an object with string, number, or symbol keys and any value types. Useful as a base type for object manipulations and transformations.

    type Obj = PlainObject;
    // Record< string | number | symbol, any >