@obstinado/gpx-builder
Version:
Builder of GPX files
15 lines (14 loc) • 341 B
TypeScript
import { Link as LinkData } from '../../../types';
export default class Link {
private href;
private text;
private type;
/**
* @see http://www.topografix.com/gpx/1/1/#type_linkType
*/
constructor(href: string, { text, type, }: {
text?: string;
type?: string;
});
toObject(): LinkData;
}