/** * 修改密码 * @param url 请求地址 * @param productid 产品编号 * @param edit_type 编辑类型 * @param id id * @param password 密码 * @param captcha 验证码 * @param cache 是否缓存 * @param force_update_cache 是否即时刷新缓存 * @example const res=await update_pwd(productid, edit_type, id, password, captcha, cache, force_update_cache); */ export default function update_pwd(productid: string, edit_type: 'normal' | 'email' | 'phone', id: string, password: string, captcha: string, cache: boolean, force_update_cache: boolean): Promise<{}>;