agsamantha/node_modules/langsmith/dist/utils/lodash/stringToPath.d.ts
2024-10-02 15:15:21 -05:00

12 lines
287 B
TypeScript

/**
* Converts `string` to a property path array.
*
* @private
* @param {string} string The string to convert.
* @returns {Array} Returns the property path array.
*/
declare const stringToPath: {
(...args: any[]): any;
cache: Map<any, any>;
};
export default stringToPath;