fix circular (#18773)

This commit is contained in:
Mads Rasmussen
2025-03-24 14:47:04 +01:00
committed by GitHub
parent 0b6fe91fd3
commit ad443c7b13
3 changed files with 8 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
import type { UmbUserDetailModel, UmbUserStartNodesModel } from '../../types.js';
import { UMB_USER_ENTITY_TYPE } from '../../entity.js';
import { UmbUserKind } from '../../utils/index.js';
import { UmbUserKind } from '../../utils/user-kind.js';
import { UmbId } from '@umbraco-cms/backoffice/id';
import type { UmbDetailDataSource } from '@umbraco-cms/backoffice/repository';
import type {

View File

@@ -1,8 +1,2 @@
export * from './is-user.function.js';
export type UmbUserKindType = 'Default' | 'Api';
export const UmbUserKind = Object.freeze({
DEFAULT: 'Default',
API: 'Api',
});
export * from './user-kind.js';

View File

@@ -0,0 +1,6 @@
export type UmbUserKindType = 'Default' | 'Api';
export const UmbUserKind = Object.freeze({
DEFAULT: 'Default',
API: 'Api',
});