UNPKG

gpx-builder

Version:
14 lines (13 loc) 390 B
import { GPXBuildData } from '../types'; import { CreatorInterface } from './CreatorInterface'; interface Settings { [key: string]: string | boolean; } export default class XMLCreator implements CreatorInterface { private settings; constructor(settings?: Settings); private processXmlItem; private generateXmlData; toString(data: GPXBuildData): string; } export {};