chore(eslint): adds eslint fixes

This commit is contained in:
Jacob Overgaard
2025-08-13 18:05:26 +02:00
parent 44af43e091
commit fc3d8c8781

View File

@@ -1,18 +1,12 @@
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import {
UMB_CONTEXT_PROVIDE_EVENT_TYPE,
UMB_CONTEXT_REQUEST_EVENT_TYPE,
type UmbContextProvideEvent,
type UmbContextRequestEvent,
} from '@umbraco-cms/backoffice/context-api';
import { UmbControllerBase } from '@umbraco-cms/backoffice/class-api';
import { UMB_CONTEXT_PROVIDE_EVENT_TYPE, UMB_CONTEXT_REQUEST_EVENT_TYPE } from '@umbraco-cms/backoffice/context-api';
import type { UmbControllerHost } from '@umbraco-cms/backoffice/controller-api';
import type { UmbContextRequestEvent, UmbContextProvideEvent } from '@umbraco-cms/backoffice/context-api';
const CtrlAlias = Symbol();
/**
* @internal
* This controller creates a Proxy for the Context API.
* @description It is not advised for anyone to implement this unless they know exactly what they are doing.
*/
export class UmbContextProxyController extends UmbControllerBase {
#target?: EventTarget;