baseAssignValue.d.ts 388 B

1234567891011
  1. /**
  2. * The base implementation of `assignValue` and `assignMergeValue` without
  3. * value checks.
  4. *
  5. * @private
  6. * @param {Object} object The object to modify.
  7. * @param {string} key The key of the property to assign.
  8. * @param {*} value The value to assign.
  9. */
  10. declare function baseAssignValue(object: Record<string, any>, key: string, value: any): void;
  11. export default baseAssignValue;