/** * Either measured depth or true vertical depth. */ export type DepthIndexTypeEnum = "measured depth" | "true vertical depth"; export const DepthIndexTypeEnum = { MeasuredDepth: "measured depth" as DepthIndexTypeEnum, TrueVerticalDepth: "true vertical depth" as DepthIndexTypeEnum, };