import { Node } from './node'; import * as L from 'leaflet'; export class Way { id: number; nodes: Node[]; polyline: L.Polyline; }