@pleisto/active-support
    Preparing search index...

    Variable mapEntriesConst

    mapEntries: <
        TKey extends string
        | number
        | symbol,
        TValue,
        TNewKey extends string | number | symbol,
        TNewValue,
    >(
        obj: Record<TKey, TValue>,
        toEntry: (key: TKey, value: TValue) => [TNewKey, TNewValue],
    ) => Record<TNewKey, TNewValue>

    Map over all the keys to create a new object

    Type declaration