stringToPath.d.ts 287 B

123456789101112
  1. /**
  2. * Converts `string` to a property path array.
  3. *
  4. * @private
  5. * @param {string} string The string to convert.
  6. * @returns {Array} Returns the property path array.
  7. */
  8. declare const stringToPath: {
  9. (...args: any[]): any;
  10. cache: Map<any, any>;
  11. };
  12. export default stringToPath;