/** * 字符串转JSON * * @param {string} str 字符串 * @return {object} 返回转换后对象 */ declare function toStringJSON(str: any): any; export default toStringJSON;