un export declaration

This commit is contained in:
Niels Lyngsø
2023-06-28 17:24:16 +02:00
parent fddbff9f20
commit d6ee84b50c

View File

@@ -2,7 +2,7 @@ import { ClassConstructor } from '../extension-api/types.js';
import { UmbControllerHost } from './controller-host.interface.js';
import type { UmbController } from './controller.interface.js';
export declare class UmbControllerHostBaseDeclaration implements Omit<UmbControllerHost, 'getHostElement'> {
declare class UmbControllerHostBaseDeclaration implements Omit<UmbControllerHost, 'getHostElement'> {
hasController(controller: UmbController): boolean;
getControllers(filterMethod: (ctrl: UmbController) => boolean): UmbController[];
addController(controller: UmbController): void;