gpx-builder
Version:
Builder of GPX files
14 lines (13 loc) • 390 B
TypeScript
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 {};