diff --git a/etc/lime-elements.api.md b/etc/lime-elements.api.md index 9e703c759a..12cf901756 100644 --- a/etc/lime-elements.api.md +++ b/etc/lime-elements.api.md @@ -618,7 +618,7 @@ export namespace Components { export type Config = { iconPath?: string; defaultLocale?: string; - featureSwitches?: any; + featureSwitches?: Record; }; // @public (undocumented) diff --git a/src/global/config.ts b/src/global/config.ts index bb378b0acc..0379653d20 100644 --- a/src/global/config.ts +++ b/src/global/config.ts @@ -17,7 +17,7 @@ export type Config = { /** * @internal */ - featureSwitches?: any; + featureSwitches?: Record; }; class ConfigClass implements Config {