MapComplete/UI/Studio/EditLayerState.ts

8 lines
229 B
TypeScript

import { OsmConnection } from "../../Logic/Osm/OsmConnection"
export default class EditLayerState {
public readonly osmConnection: OsmConnection
constructor() {
this.osmConnection = new OsmConnection({})
}
}