import type { UmbDataTypeEntityType } from './entity.js'; export type * from './entity.js'; export interface UmbDataTypeDetailModel { entityType: UmbDataTypeEntityType; unique: string; name: string; editorAlias: string | undefined; editorUiAlias: string | null; editorDataSourceAlias?: string | null; values: Array; } export interface UmbDataTypePropertyValueModel { alias: string; value: ValueType; }