baseSet.d.ts 431 B

123456789101112
  1. /**
  2. * The base implementation of `set`.
  3. *
  4. * @private
  5. * @param {Object} object The object to modify.
  6. * @param {Array|string} path The path of the property to set.
  7. * @param {*} value The value to set.
  8. * @param {Function} [customizer] The function to customize path creation.
  9. * @returns {Object} Returns `object`.
  10. */
  11. declare function baseSet(object: any, path: any, value: any, customizer: any): any;
  12. export default baseSet;