@obstinado/gpx-builder
Version:
Builder of GPX files
15 lines (14 loc) • 586 B
TypeScript
import { CreatorInterface } from "./creators/CreatorInterface";
import { GPXBuildData } from "./types";
/**
* Function that create XML string with GPX data.
*
* @param data - Formated data
* @param creator - Creator that converts data to XML string
* @returns XML string
*/
declare function buildGPX(data: GPXBuildData, gpxCreator: CreatorInterface): string;
export { buildGPX };
export { default as BaseBuilder } from "./builder/BaseBuilder";
export { default as StravaBuilder } from "./builder/StravaBuilder";
export { default as GarminBuilder } from "./builder/GarminBuilder";