UNPKG

tcx-builder

Version:
21 lines (20 loc) 547 B
import { BaseObject } from '../_common'; import { Position } from '../Position'; import { CoursePointType } from '../../interfaces'; export declare class CoursePoint extends BaseObject { Name: string; Time: Date; Position: Position; AltitudeMeters?: number; PointType: CoursePointType; Notes?: string; constructor(options: { name: string; time: Date; position: Position; altitudeMeters?: number; pointType: CoursePointType; notes?: string; }); toXml(): string; }