import { GeoCoordinates } from './GeoCoordinates'; import { Line } from './Line'; export interface Node { getLatitudeDeg(): number; getLongitudeDeg(): number; getGeoCoordinates(): GeoCoordinates; getConnectedLines(): Array; getNumberConnectedLines(): number; getOutgoingLines(): Array; getIncomingLines(): Array; getID(): number; }