gpx-parser-lite
Advanced tools
Comparing version 0.0.3 to 0.0.4
import { Activity } from "./model/Activity"; | ||
import { ActivityDataPoint } from "./model/ActivityDataPoint"; | ||
declare function parseGPXString(gpxFile: any): Promise<Activity | undefined>; | ||
@@ -7,2 +8,2 @@ interface NodeCallback { | ||
declare function parseGPXFile(gpxFilePath: any, callback?: NodeCallback): void; | ||
export { Activity, NodeCallback, parseGPXString, parseGPXFile }; | ||
export { Activity, ActivityDataPoint, NodeCallback, parseGPXString, parseGPXFile }; |
{ | ||
"name": "gpx-parser-lite", | ||
"version": "0.0.3", | ||
"version": "0.0.4", | ||
"description": "Parses GPX files to JSON", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
14675
252