From bbdd311897aa0afb816a6bf7ed46e46fc69f07c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Mon, 2 Jan 2023 21:33:56 +0100 Subject: [PATCH] type correction --- src/Umbraco.Web.UI.Client/src/core/element/element.mixin.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 e7841a750f..16df7388b0 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 @@ -12,7 +12,7 @@ interface ResolvedContexts { } export declare class UmbElementMixinInterface extends UmbControllerHostInterface { - observe(source: Observable, callback: (_value: T) => void): UmbObserverController; + observe(source: Observable, callback: (_value: T) => void): UmbObserverController; provideContext(alias: string, instance: unknown): UmbContextProviderController; consumeContext(alias: string, callback: UmbContextCallback): UmbContextConsumerController; consumeAllContexts(contextAliases: string[], callback: (_instances: ResolvedContexts) => void): void;