diff --git a/packages/core/src/extensions/extension-loader/extension-registrator-injection-token.ts b/packages/core/src/extensions/extension-loader/extension-registrator-injection-token.ts index e49e38f0ea..b76c7e037a 100644 --- a/packages/core/src/extensions/extension-loader/extension-registrator-injection-token.ts +++ b/packages/core/src/extensions/extension-loader/extension-registrator-injection-token.ts @@ -7,8 +7,7 @@ import type { Injectable } from "@ogre-tools/injectable"; import { getInjectionToken } from "@ogre-tools/injectable"; import type { IComputedValue } from "mobx"; -// eslint-disable-next-line @typescript-eslint/no-explicit-any -export type Injectables = Injectable[]; +export type Injectables = Injectable[]; export type Registration = Injectables | IComputedValue; export type ExtensionRegistrator = (extension: LegacyLensExtension) => Registration;