import { VariableIdentifierData } from '../../../shared/variable/variable-identifier.data'; import { RotationDirectionType } from '../../../../../shared/dynamic-conduct-model/rotation/rotation-direction-type'; import { VariableName } from '../../../../workshop/core/variable/variable-name'; import { DataType } from '../../../../workshop/core/variable/data-type'; export interface RingGraphGeneralData { rotationDirection: RotationDirectionType; isFullRing: boolean; startAngle: number; endAngle: number; radiusPercentage: number; minCalibration: number; maxCalibration: number; variableId?: VariableIdentifierData; configureVariableId: VariableName; variableDataType?: DataType; }