12 lines
291 B
TypeScript
12 lines
291 B
TypeScript
import { UmbTreeItemElement } from '../interfaces';
|
|
import type { ManifestElement } from '.';
|
|
|
|
export interface ManifestTreeItem extends ManifestElement<UmbTreeItemElement> {
|
|
type: 'treeItem';
|
|
conditions: ConditionsTreeItem;
|
|
}
|
|
|
|
export interface ConditionsTreeItem {
|
|
entityType: string;
|
|
}
|