add props to interface

This commit is contained in:
Mads Rasmussen
2023-01-05 13:31:34 +01:00
parent 1c38840c16
commit 039713adde

View File

@@ -1,3 +1,5 @@
export interface UmbWorkspaceEntityElement {
set entityKey(key: string);
}
set entityKey(key: string);
set parentEntityKey(key: string | null);
set isNew(isNew: boolean);
}