UNPKG

gpx-builder

Version:
15 lines (14 loc) 344 B
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; }