import { DistanceUnitEnum } from "./distanceUnitEnum"; export interface Datum { /** * Amount of a given unit. */ value: number; unit: DistanceUnitEnum; /** * The name of the reference point. Eg. \"KB\" for kelly bushing. */ reference: string; }