gpx-builder
Version:
Builder of GPX files
17 lines (16 loc) • 397 B
TypeScript
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;
}