Type alias IActionMapObject

IActionMapObject: {
    [key: string | number]: any[] | Lazy<any[]>;
}

An object mapping member keys to arrays of objects which can can be used as the map argument of call, set or del. It may also be an instance of Lazy which resolves to any of these. The values or the items in them may also be Lazy objects that return the expected type of object there.

Type declaration

  • [key: string | number]: any[] | Lazy<any[]>