forked from MapComplete/MapComplete
19 lines
465 B
TypeScript
19 lines
465 B
TypeScript
export interface ImageUploader {
|
|
maxFileSizeInMegabytes?: number
|
|
/**
|
|
* Uploads the 'blob' as image, with some metadata.
|
|
* Returns the URL to be linked + the appropriate key to add this to OSM
|
|
*/
|
|
uploadImage(
|
|
blob: File,
|
|
currentGps: [number, number],
|
|
author: string,
|
|
noblur: boolean
|
|
): Promise<UploadResult>
|
|
}
|
|
|
|
export interface UploadResult {
|
|
key: string
|
|
value: string
|
|
absoluteUrl: string
|
|
}
|