temp update of models to match server until we have our own types
This commit is contained in:
@@ -1,14 +1,15 @@
|
||||
export interface UmbTreeItemModel {
|
||||
type: string;
|
||||
name: string;
|
||||
hasChildren: boolean;
|
||||
icon?: string;
|
||||
type?: string; // TODO: remove option to be undefined when we have our own types
|
||||
name?: string;
|
||||
hasChildren?: boolean;
|
||||
icon?: string | null;
|
||||
parentId?: string | null;
|
||||
}
|
||||
|
||||
export interface UmbEntityTreeItemModel extends UmbTreeItemModel {
|
||||
id: string;
|
||||
id?: string; // TODO: remove option to be undefined when server returns the same
|
||||
}
|
||||
|
||||
export interface UmbFileSystemTreeItemModel {
|
||||
path: string;
|
||||
path?: string; // TODO: remove option to be undefined when server returns the same
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user