(url: string)
| 113 | } |
| 114 | |
| 115 | async downloadRemoteMapRegion(url: string) { |
| 116 | return catchInternal(async () => { |
| 117 | const response = await this.client.post<{ message: string; filename: string; url: string }>( |
| 118 | '/maps/download-remote', |
| 119 | { url } |
| 120 | ) |
| 121 | return response.data |
| 122 | })() |
| 123 | } |
| 124 | |
| 125 | async downloadRemoteMapRegionPreflight(url: string) { |
| 126 | return catchInternal(async () => { |
no test coverage detected