UNPKG

langsmith

Version:

Client library to connect to the LangSmith Observability and Evaluation Platform.

10 lines (9 loc) 241 B
/** * Converts `value` to a string key if it's not a string or symbol. * * @private * @param {*} value The value to inspect. * @returns {string|symbol} Returns the key. */ declare function toKey(value: any): any; export default toKey;