Small fixes for the GRB theme and value substitution

This commit is contained in:
Pieter Vander Vennet 2020-08-27 00:08:00 +02:00
parent 328dc5577c
commit 71f4d4091e
17 changed files with 798 additions and 74 deletions

14
test.ts
View file

@ -0,0 +1,14 @@
import {OsmConnection} from "./Logic/Osm/OsmConnection";
import {UIEventSource} from "./Logic/UIEventSource";
const conn = new OsmConnection(false, new UIEventSource<string>(""), false);
conn.AttemptLogin();
const csHandler = conn.changesetHandler;
conn.OnLoggedIn((ud) => {
});