Merge pull request #1925 from umbraco/feature/allow-conditional-trees

Feature: Allow conditional trees
This commit is contained in:
Lee Kelleher
2024-05-27 14:12:55 +01:00
committed by GitHub

View File

@@ -1,6 +1,7 @@
import type { ManifestElementAndApi } from '@umbraco-cms/backoffice/extension-api';
import type { ConditionTypes } from '../conditions/types.js';
import type { ManifestElementAndApi, ManifestWithDynamicConditions } from '@umbraco-cms/backoffice/extension-api';
export interface ManifestTree extends ManifestElementAndApi {
export interface ManifestTree extends ManifestElementAndApi, ManifestWithDynamicConditions<ConditionTypes> {
type: 'tree';
meta: MetaTree;
}