diff --git a/src/Umbraco.Web.UI.Client/src/core/element/element.mixin.ts b/src/Umbraco.Web.UI.Client/src/core/element/element.mixin.ts index c7e8ea145e..533d9c8e92 100644 --- a/src/Umbraco.Web.UI.Client/src/core/element/element.mixin.ts +++ b/src/Umbraco.Web.UI.Client/src/core/element/element.mixin.ts @@ -13,7 +13,9 @@ interface ResolvedContexts { } export declare class UmbElementMixinInterface extends UmbControllerHostInterface { - consumeContext(alias: string, callback: (_instance: any) => void): void; + observe(source: Observable, callback: (_value: Y) => void): UmbObserverController; + provideContext(alias: string, instance: unknown): UmbContextProviderController; + consumeContext(alias: string, callback: (_instance: any) => void): UmbContextConsumerController; consumeAllContexts(contextAliases: string[], callback: (_instances: ResolvedContexts) => void): void; }