From d1c5bb959568b3f17c5db12ea1d3abc76685a13f Mon Sep 17 00:00:00 2001 From: Rainer Killinger Date: Tue, 18 Jan 2022 15:12:05 +0100 Subject: [PATCH] refactor: use SCMap for feature configurations --- src/config/feature.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/config/feature.ts b/src/config/feature.ts index 464acd5f..d4f074f3 100644 --- a/src/config/feature.ts +++ b/src/config/feature.ts @@ -13,18 +13,19 @@ * this program. If not, see . */ +import {SCMap} from '../general/map'; import {SCAuthorizationProviderType} from './authorization'; export interface SCFeatureConfiguration { /** * Map of extern services mapped by their name (statically) */ - extern?: Map; + extern?: SCMap; /** * Map of plugins registered with the backend mapped by their name. */ - plugins?: Map; + plugins?: SCMap; }