add isNew to workspace interface

This commit is contained in:
Mads Rasmussen
2023-02-16 14:13:52 +01:00
parent edf73b2f9c
commit bb747709be

View File

@@ -1,10 +1,8 @@
export interface UmbWorkspaceContextInterface<T = unknown> {
//readonly data: Observable<T>;
//getUnique(): string | undefined;
isNew: boolean;
getEntityType(): string;
getData(): T;
destroy(): void;
}