/** * 将JS对象序列化成JSON * @param v1 需序列化的数据 */ export default function to_json(v1: { [key: string]: any; }): string;