gpx-builder
Version:
Builder of GPX files
16 lines (15 loc) • 617 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, creator?: CreatorInterface): string;
export { buildGPX };
export { default as BaseBuilder } from './builder/BaseBuilder';
export * from './parser/parser';
export { default as StravaBuilder } from './builder/StravaBuilder';
export { default as GarminBuilder } from './builder/GarminBuilder';