From 3470be65ee2cae824a74ee33c3715f60e33ecc9b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 21 Nov 2023 20:58:47 +0100 Subject: [PATCH] make sure we extend UmbApi --- .../workspace-context/workspace-context.interface.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-context/workspace-context.interface.ts b/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-context/workspace-context.interface.ts index cdb9fa4b4e..e065c1adb0 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-context/workspace-context.interface.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-context/workspace-context.interface.ts @@ -1,4 +1,6 @@ -export interface UmbWorkspaceContextInterface { +import type { UmbApi } from '@umbraco-cms/backoffice/extension-api'; + +export interface UmbWorkspaceContextInterface extends UmbApi { readonly workspaceAlias: string; // TODO: should we consider another name than entity type. File system files are not entities but still have this type. getEntityType(): string;