forked from MapComplete/MapComplete
8 lines
229 B
TypeScript
8 lines
229 B
TypeScript
import { OsmConnection } from "../../Logic/Osm/OsmConnection"
|
|
|
|
export default class EditLayerState {
|
|
public readonly osmConnection: OsmConnection
|
|
constructor() {
|
|
this.osmConnection = new OsmConnection({})
|
|
}
|
|
}
|