/*** * @file: * @author: linkun.he * @Date: 2019-06-03 10:11:13 */ 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 LogoutService extends BaseAjaxService { private settings; private admin; private logoutUrl; constructor(settings: SettingsService, http: HttpClient); logout(): Observable; }