import { DistanceUnit } from "./distanceUnit"; import { DepthIndexTypeEnum } from "./depthIndexTypeEnum"; /** * Column for the depth index. */ export interface DepthIndexColumn { /** * External id of the sequence column. */ columnExternalId: string; unit: DistanceUnit; type: DepthIndexTypeEnum; }