langsmith
Version:
Client library to connect to the LangSmith Observability and Evaluation Platform.
13 lines (12 loc) • 431 B
TypeScript
/**
* The base implementation of `set`.
*
* @private
* @param {Object} object The object to modify.
* @param {Array|string} path The path of the property to set.
* @param {*} value The value to set.
* @param {Function} [customizer] The function to customize path creation.
* @returns {Object} Returns `object`.
*/
declare function baseSet(object: any, path: any, value: any, customizer: any): any;
export default baseSet;