user interface instead of type

This commit is contained in:
Mads Rasmussen
2023-12-11 11:16:26 +01:00
parent a1ba43fed1
commit aea5ef56d2

View File

@@ -1,4 +1,4 @@
export type UmbDataTypeDetailModel = {
export interface UmbDataTypeDetailModel {
type: string;
unique: string;
parentUnique: string | null;
@@ -6,7 +6,7 @@ export type UmbDataTypeDetailModel = {
propertyEditorAlias: string | undefined;
propertyEditorUiAlias: string | null;
values: Array<UmbDataTypePropertyModel>;
};
}
export interface UmbDataTypePropertyModel {
alias: string;