import { DirectionType } from './direction-type'; import { VariableIdentifierData } from '../../../shared/variable/variable-identifier.data'; import { VariableName } from '../../../../workshop/core/variable/variable-name'; import { DataType } from '../../../../workshop/core/variable/data-type'; export interface GeneralPropertyData { direction: DirectionType; minValue: number; maxValue: number; variableId?: VariableIdentifierData; variableDataType?: DataType; configureVariableId?: VariableName; }