fix missing type when importing

This commit is contained in:
Mads Rasmussen
2024-01-25 13:22:16 +01:00
parent 0a8d0a1c9d
commit c641fd7d56
2 changed files with 5 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
import { UmbEntityActionEvent, UmbEntityActionEventArgs } from '@umbraco-cms/backoffice/entity-action';
import { UmbEntityActionEvent, type UmbEntityActionEventArgs } from '@umbraco-cms/backoffice/entity-action';
export class UmbReloadTreeItemChildrenRequestEntityActionEvent extends UmbEntityActionEvent {
static readonly TYPE = 'reload-tree-item-children-request';

View File

@@ -1,7 +1,8 @@
import { type UmbCopyDataTypeRepository } from '../../data-type/repository/copy/data-type-copy.repository.js';
import type { UmbCopyDataTypeRepository } from '../../data-type/repository/copy/data-type-copy.repository.js';
import { UmbEntityActionBase } from '@umbraco-cms/backoffice/entity-action';
import { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';
import { UMB_ACTION_EVENT_CONTEXT, UmbActionEventContext } from '@umbraco-cms/backoffice/action';
import type { UmbControllerHostElement } from '@umbraco-cms/backoffice/controller-api';
import type { UmbActionEventContext } from '@umbraco-cms/backoffice/action';
import { UMB_ACTION_EVENT_CONTEXT } from '@umbraco-cms/backoffice/action';
import { UmbReloadTreeItemChildrenRequestEntityActionEvent } from '@umbraco-cms/backoffice/tree';
export class UmbReloadTreeItemChildrenEntityAction extends UmbEntityActionBase<UmbCopyDataTypeRepository> {