/** * 判断是否是JSON字符串 * @param str 需要校验的字符串 * @return Boolean 是否是JSON格式的字符串 */ declare function isJson(str: string): boolean; export default isJson;