map-alliance/src/app/models/measurement.ts

7 lines
103 B
TypeScript
Raw Normal View History

2019-07-22 13:04:04 -04:00
import {LatLng} from "./latlng";
export interface Measurement {
start: LatLng;
end: LatLng;
}