/*** * @file: * @author: caojianping * @Date: 2021-05-25 15:09:15 */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { SettingsService } from '@ithinkdt/shared/browser'; import { BaseAjaxService } from '@ithinkdt/shared/http'; export declare class ResetPwdService extends BaseAjaxService { private settings; private admin; constructor(settings: SettingsService, http: HttpClient); /** 修改密码 */ updatePassword(param?: any): Observable; }