UNPKG

gpx-builder

Version:
17 lines (16 loc) 397 B
import { Person as PersonData } from '../../../types'; import Link from './Link'; export default class Person { private name?; private email?; private link?; /** * @see http://www.topografix.com/gpx/1/1/#type_personType */ constructor({ name, email, link, }: { email?: string; link?: Link; name?: string; }); toObject(): PersonData; }