diff --git a/src/Umbraco.Web.UI.Client/src/libs/extension-api/types/manifest-entrypoint.interface.ts b/src/Umbraco.Web.UI.Client/src/libs/extension-api/types/manifest-entrypoint.interface.ts index 90a1ddfedc..0c400daf64 100644 --- a/src/Umbraco.Web.UI.Client/src/libs/extension-api/types/manifest-entrypoint.interface.ts +++ b/src/Umbraco.Web.UI.Client/src/libs/extension-api/types/manifest-entrypoint.interface.ts @@ -7,12 +7,4 @@ import type { ManifestPlainJs } from './base.types.js'; */ export interface ManifestEntryPoint extends ManifestPlainJs { type: 'entryPoint'; - - /** - * The scope of the entry point. If global, the entry point will be loaded on the root host and never be destroyed. - * If local, the entry point will be loaded on the BackofficeElement and will be destroyed when the host is removed for example when signing out. - * @default 'local' - * @enum ['global', 'local'] - */ - scope?: 'global' | 'local'; }