UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

10 lines (9 loc) 392 B
/** * This method is like `cloneDeep` except that it accepts customizer which * is invoked to produce the cloned value. If customizer returns undefined, * cloning is handled by the method instead. * Drop-in replacement for lodash/cloneDeepWith. */ type CloneCustomizer = (value: any) => any; export default function cloneDeepWith<T>(value: T, customizer: CloneCustomizer): T; export {};