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

    Variable mapKeysConst

    mapKeys: <
        TValue,
        TKey extends string | number | symbol,
        TNewKey extends string | number | symbol,
    >(
        obj: Record<TKey, TValue>,
        mapFunc: (key: TKey, value: TValue) => TNewKey,
    ) => Record<TNewKey, TValue>

    Map over all the keys of an object to return a new object

    Type declaration