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