import type { ManifestPlainJs, UmbEntryPointModule } from '../../../../libs/extension-api/index.js'; /** * Manifest for an `entryPoint`, which is loaded after the Backoffice has been loaded and authentication has been done. * * This type of extension gives full control and will simply load the specified JS file. * You could have custom logic to decide which extensions to load/register by using extensionRegistry. * @deprecated Use `ManifestBackofficeEntryPoint` instead. */ export interface ManifestEntryPoint extends ManifestPlainJs { type: 'entryPoint'; } declare global { interface UmbExtensionManifestMap { UmbEntryPointExtension: ManifestEntryPoint; } }