import { DataType, MMELNode, MMELObject } from './baseinterface'; export interface MMELDataAttribute extends MMELObject { id: string; type: string; modality: string; cardinality: string; definition: string; ref: Set; datatype: DataType.DATAATTRIBUTE; } export interface MMELDataClass extends MMELNode { id: string; attributes: Record; datatype: DataType.DATACLASS; } export interface MMELEnumValue extends MMELObject { id: string; value: string; datatype: DataType.ENUMVALUE; } export interface MMELEnum extends MMELObject { id: string; values: Record; datatype: DataType.ENUM; } export interface MMELRegistry extends MMELNode { title: string; data: string; datatype: DataType.REGISTRY; } //# sourceMappingURL=datainterface.d.ts.map