function copyInstancePropertiesWithoutMemos<TTarget, TSource>(target, source): TTarget & TSource;Defined in: utils.ts:58
Copies prototype-instance own properties without carrying over lazy memo closures or the per-row cell cache, both of which are bound to the source instance (cached cells reference the source row).
TTarget extends Record<string, any>
TSource extends Record<string, any>
TTarget
TSource
TTarget & TSource