UNPKG

@sports-alliance/sports-lib

Version:

A Library to for importing / exporting and processing GPX, TCX, FIT and JSON files from services such as Strava, Movescount, Garmin, Polar etc

6 lines (5 loc) 642 B
export declare const findChildNode: (fromNodeList: NodeListOf<ChildNode>, childNodeName: string | RegExp) => ChildNode | null; export declare const findChildNodeValue: (fromNodeList: NodeListOf<ChildNode>, childNodeName: string | RegExp) => number | null; export declare const findTrackPointExtensionValue: (childNodes: NodeListOf<ChildNode>, extensionName: string) => number | null; export declare const findLapExtensionValue: (childNodes: NodeListOf<ChildNode>, extensionName: string) => number | null; export declare const findExtensionValue: (childNodes: NodeListOf<ChildNode>, extensionName: string, namespace: string) => number | null;