/** * Example API * An example application with OpenAPI, Swashbuckle, and API versioning. * Bill Mei * bill.mei@somewhere.com * MIT * https://opensource.org/licenses/MIT * 1.0 * undefined */ import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import * as __model from '../model'; import * as i0 from "@angular/core"; export interface DeleteAccountParams { /** * The requested API version * default: 1.0 */ 'x-api-version'?: string; /** * The requested API version * default: 1.0 */ 'api-version'?: string; model: __model.DeleteAccountRequest; } export declare class AccountService { private http; constructor(http: HttpClient); /** http://undefined/swagger/swagger-ui.html#!/Account/undefined */ deleteAccount(params: DeleteAccountParams): Observable<__model.DeleteAccountResponse>; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }