utils
    Preparing search index...

    Type Alias MapObjectHandler<T>

    MapObjectHandler: (key: string, value: Any, source?: T) => Any

    A type for the handler function used by mapObject.

    It receives the key and value of each property, and the original source object. It should return the new value for that property. The generic T represents the type of the source object.

    Type Parameters

    • T extends object = Any

    Type Declaration

      • (key: string, value: Any, source?: T): Any
      • Parameters

        • key: string
        • value: Any
        • Optionalsource: T

        Returns Any