From 7bc15c6b814e62db5c5324338a19909d1b082149 Mon Sep 17 00:00:00 2001 From: Daniel Wiehl Date: Wed, 13 Nov 2019 16:02:40 +0100 Subject: [PATCH] fix: declare the type `viewref` to be of type `string` instead of a string literal fixes: #207 --- .../workbench-application-platform.api/src/lib/view.model.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/scion/workbench-application-platform.api/src/lib/view.model.ts b/projects/scion/workbench-application-platform.api/src/lib/view.model.ts index 1c82ed775..9adfa75d3 100644 --- a/projects/scion/workbench-application-platform.api/src/lib/view.model.ts +++ b/projects/scion/workbench-application-platform.api/src/lib/view.model.ts @@ -13,7 +13,7 @@ import { Capability, IntentMessage, PlatformCapabilityTypes } from './core.model /** * Declares the type of a view reference. */ -export declare type ViewRef = 'string'; +export type ViewRef = string; /** * Capability to show an application page as a workbench view.