/** * Engine API * Civilization Engine API * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ import { HttpClient, HttpHeaders, HttpResponse, HttpEvent } from '@angular/common/http'; import { Observable } from 'rxjs'; import { MapDto } from '../model/mapDto'; import { Configuration } from '../configuration'; export declare class MapService { protected httpClient: HttpClient; protected basePath: string; defaultHeaders: HttpHeaders; configuration: Configuration; constructor(httpClient: HttpClient, basePath: string, configuration: Configuration); /** * @param consumes string[] mime-types * @return true: consumes contains 'multipart/form-data', false: otherwise */ private canConsumeForm; /** * Get Map * Get Map * @param boardId Board ID * @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body. * @param reportProgress flag to report request and response progress. */ getMap(boardId: number, observe?: 'body', reportProgress?: boolean): Observable; getMap(boardId: number, observe?: 'response', reportProgress?: boolean): Observable>; getMap(boardId: number, observe?: 'events', reportProgress?: boolean): Observable>; }