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