deepExtend<T, E>(base: T, ...extensors: E[]): T & Record<string, any>
Experimental
Deep extends an object with a list of extensors.
No deep properties from base will be ever subscribed.
The order of extensors define it's priority, the lower the index, the higher the priority.
Deep extends an object with a list of extensors. No deep properties from
base
will be ever subscribed. The order ofextensors
define it's priority, the lower the index, the higher the priority.Example