forked from MapComplete/MapComplete
Fixed part of the special renderings
This commit is contained in:
parent
eec762b71f
commit
e480c97676
11 changed files with 156 additions and 147 deletions
|
@ -3,9 +3,9 @@ import {Imgur} from "./Imgur";
|
|||
|
||||
export default class ImgurUploader {
|
||||
|
||||
public queue: UIEventSource<string[]>;
|
||||
public failed: UIEventSource<string[]>;
|
||||
public success: UIEventSource<string[]>
|
||||
public readonly queue: UIEventSource<string[]> = new UIEventSource<string[]>([]);
|
||||
public readonly failed: UIEventSource<string[]> = new UIEventSource<string[]>([]);
|
||||
public readonly success: UIEventSource<string[]> = new UIEventSource<string[]>([]);
|
||||
private readonly _handleSuccessUrl: (string) => void;
|
||||
|
||||
constructor(handleSuccessUrl: (string) => void) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue