UNPKG

411 BPlain TextView Raw
1/**
2 * A unit of distance.
3 */
4export enum DistanceUnit {
5 /**
6 * A distance in Imperial miles.
7 */
8 Mile,
9
10 /**
11 * A distance in SI kilometers.
12 */
13 Kilometer
14}
15
16/**
17 * The physical distance to an object.
18 */
19export interface Distance {
20 /**
21 * The quantity of the distance.
22 */
23 value: number;
24
25 /**
26 * The units for the distance (e.g. miles or kilometers)
27 */
28 unit: DistanceUnit;
29}