agsamantha/node_modules/langsmith/dist/utils/lodash/baseAssignValue.d.ts

12 lines
388 B
TypeScript
Raw Normal View History

2024-10-02 15:15:21 -05:00
/**
* The base implementation of `assignValue` and `assignMergeValue` without
* value checks.
*
* @private
* @param {Object} object The object to modify.
* @param {string} key The key of the property to assign.
* @param {*} value The value to assign.
*/
declare function baseAssignValue(object: Record<string, any>, key: string, value: any): void;
export default baseAssignValue;